Skip to main content

Division

Splits the flow into multiple parallel branches. Each branch receives the same input data and executes independently.

Parameters

ParameterTypeRequiredVariableDescription
modechoice (static, dynamic)YesNoSplit mode: static (fixed number of branches) or dynamic (expression-based). (Default: "static")
branchesnumberNoNoNumber of parallel branches to create (static mode only). (Default: 2, min 2, max 10)
splitExpressiontextNoNoJMESPath expression that returns an array. Each element creates a branch (dynamic mode only).
outputVariablesarrayNoNoOutput variable names for each branch. Defaults to branch_1_output, branch_2_output, etc.
Tip

Combine with a Merge block to collect results from all branches. By default, 2 branches are created.