Example of a pipeline with a fanout step (@foreach
) that runs the same input through a solve step with different app options.
graph LR
fanout{ }
fanout(fanout)
fanout -- foreach --> solve
stats(stats)
stats -- join --> merge
solve(solve)
solve -- join --> merge
merge(merge)
- Push the echo app as described in the echo app README
nextmv app push -a <app-id>
echo '{}' | nextmv app run -a <app-id>