Parallel Processing

I am building an n8n workflow to verify tools on multiple VPSs; however, it runs sequentially. Is there a way to run it in parallel, as I am scaling the Flow to monitor more VPSs?

If you have it triggering subworkflows and don’t wait for completion, it will be like “parallel” as the next subworkflow will be triggered before the previous one has been completed. Make sure to uncheck “Wait For Sub-Workflow Completion” under Options.

2 Likes

I will test it out Thanks @loyuetchan