Sagemaker pipeline: can step_c depend on step_a OR step_b? #2654
Unanswered
fishsauceineverything
asked this question in
Help
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a situation in sagemaker pipeline where depending on some condition,
step_a
andstep_b
will have different input but they output to the same location. Only one of them will get executed in the pipeline run. As long as either of them finished,step_c
can start.I looked through examples and docs, seems like if I do
step_c.depend_on([step_a, step_b])
, it will wait for bothstep_a
andstep_b
, but I want it to depend on a OR b. Is it possible today?Beta Was this translation helpful? Give feedback.
All reactions