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
Is this a BUG REPORT or FEATURE REQUEST?: BUG REPORT (or is it intended behavior?)
What happened:
Template parallelism is not limiting nested workflows when specified on the outer workflow.
I have a workflow template A. It has steps with withParam to run N times of workflow template B. B has steps with withParam to run several times of a container template one-step.
I set parallelism: 1 on A, and I expect to run only one B at a time.
What you expected to happen:
Only one B is run at a time.
How to reproduce it (as minimally and precisely as possible):
This is modified from parallelism-nested.yaml example.
Related issue: argoproj#1035
What is solved:
- Parallelism for nested steps (StepGroups)
What is not solved:
- Parallelism for nested DAG
This commit make nested StepGroup workflow parallelism on the outer
workflow limiting inner workflow execution. This is done by making
checkParallelism called by the inner workflow checks if the number of
its running siblings (the nodes with the same parent node) is >=
the parent node's parallelism.
Is this a BUG REPORT or FEATURE REQUEST?: BUG REPORT (or is it intended behavior?)
What happened:
Template parallelism is not limiting nested workflows when specified on the outer workflow.
I have a workflow template
A
. It hassteps
withwithParam
to run N times of workflow templateB
.B
hassteps
withwithParam
to run several times of a container templateone-step
.I set
parallelism: 1
onA
, and I expect to run only oneB
at a time.What you expected to happen:
Only one
B
is run at a time.How to reproduce it (as minimally and precisely as possible):
This is modified from parallelism-nested.yaml example.
Anything else we need to know?:
Environment:
Other debugging information (if applicable):
The text was updated successfully, but these errors were encountered: