Skip to main content

Serial and Parallel Execution

Serial vs. Parallel Execution
When building a workflow, you can arrange nodes in series or in parallel:
  • In series, nodes run one after another. Each node can read variables from any node earlier in the chain.
  • In parallel, nodes run at the same time. They can’t read each other’s variables, but where parallel branches converge, the downstream node can read from all of them.
A single execution path supports up to 50 nodes.

Node Reuse

All nodes except Start can be copied and pasted within the same workflow. When you paste a node, its configuration moves with it.

Iteration

For nodes that should run multiple times (once per item in a list), place them inside an Iteration node.