You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
foreach: add foreach_strategy property to ensure sequence between foreach elements (#211)
Each elements of a foreach loop are run in parallel.
`foreach_strategy` control the strategy in which the elements will be run
sequentially or in parallel.
Closes#197
Signed-off-by: Romain Beuque <556072+rbeuque74@users.noreply.github.com>
It's possible to configure the strategy used to run each elements: default strategy is `parallel`: each elements will be run in parallel to maximize throughput ; `sequence` will run each element when the previous one is done, to ensure the sequence between elements. It can be declared in the template as is:
595
+
```yaml
596
+
foreach_strategy: "sequence"
597
+
```
598
+
594
599
#### Resources <a name="resources"></a>
595
600
596
601
Resources are a way to restrict the concurrency factor of certain operations, to control the throughput and avoid dangerous behavior e.g. flooding the targets.
0 commit comments