Hi everyone,
I’m working on an n8n workflow that requires parallel execution of two basic LLM Chains and I’ve run into some roadblocks trying to make this work.
I understand that native parallel processing isn’t officially supported but I’ve been testing a couple of workarounds to simulate it, which I found here in forum posts. Specifically, I’ve tried:
Running two subworkflows using the Execute Workflow node.
Triggering the subflows via HTTP Webhook calls from the main workflow.
Unfortunately, both approaches still run the subflows sequentially, not in parallel as hoped. Even when I switched the execution mode from v1 to Legacy (v0) there was no change—the subflows are processed one after the other from the main flow.
Has anyone here managed to get true parallel execution working reliably in n8n? Would love to hear about any tricks, node configurations, or architectural patterns that made it work.
Thanks in advance for your insights!
Freddy