Hey folks! I have a question about dependencies wi...
# flyte-support
a
Hey folks! I have a question about dependencies with dynamic workflows. My use case is that I have 2 dynamic workflows, and I want to find a way to put dependencies on the individual tasks within the workflow. For example
wf_a(input)
and
wf_b(input)
Can create a DAG like • task_a(ONE) • task_a(TWO) • task_b(ONE) • task_b(TWO) Where any task_b is dependent on ALL task_a tasks successfully executing. I was wondering if there was a way where I could keep the dynamic definitions, but end up with a DAG like • task_a(ONE) >> task_b(ONE) • task_a(TWO) >> task_b(TWO) where the tasks are dependent at an input level (i.e. if the inputs are the same, you have a dependency) I also don't mind moving to another concept like Map tasks, but the main focus is to not have to write the tasks individually to get the dependencies.
t
you can’t make it one big dynamic workflow?