Would this syntax make it so that Flyte waits for sub_workflow1 to complete successfully and entirely before moving onto sub_workflow2?
We'd like to enable some AWS Batch-like behavior for some scheduled ML flows
d
damp-lion-88352
07/18/2023, 4:34 AM
In my experience at local ubuntu, yes.
But I am a beginner in Flyte, so let's wait for other's answer.
t
tall-lock-23197
07/18/2023, 4:41 AM
Yes,
sub_workflow2
waits for the completion of
sub_workflow1
.
f
fancy-plumber-70674
07/18/2023, 5:56 AM
@tall-lock-23197 Ok, so subworkflow2 won't provision a pod until workflow1 is complete? If so, that's the desired behavior. Thank you.