Hello, I’m having a question around Async and Sync node executions.
In my workflow I have 8 HTTPS requests connected to a single Form Submission node. Nodes are being executed one by one instead of being all executed at the same time.
How do I get all nodes running once the Form Submission has been received?
To run your 8 HTTP requests in parallel after the Form Submission node, you can use the **Split In Batches** node to divide the requests into batches and execute them concurrently. Alternatively, consider using the **Execute Workflow** node to trigger separate workflows for each HTTP request, allowing them to run asynchronously. For more details on parallel execution, check out this [n8n.io](Pattern for parallel sub-workflow execution followed by wait-for-all loop | n8n workflow template) workflow template.