Running a variable number of steps, concurrently #6683
-
I've got a template defining a DAG and I'd like to be able to pass in a parameter saying how many copies of one of the tasks I want to run in parallel. I thought I could achieve this by adding a withParam to the tasks I want to run multiple copies of:
but I don't believe the withParam template is getting expanded. Am I missing an obvious way to achieve this? Any suggestions very welcome. Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Typically, within a couple of hours of posting a question I find the answer myself. The solution is to use
works like a charm. Thanks. |
Beta Was this translation helpful? Give feedback.
Typically, within a couple of hours of posting a question I find the answer myself. The solution is to use
works like a charm. Thanks.