Vincent
07/20/2021, 4:51 PMwait=True
for StartFlowRun
tasks, the result objects are not stored at the target store. I want to kick off a flow of flows, such that the StartFlowRun
tasks saves a result object to avoid resubmission of the flow. wait=False
restores the expected behavior. Are there any suggestions to have dependent flows, with checkpointing.Kevin Kho
StartFlowRun
task returns different things if you wait for not. My initial suggestion is to use the KV Store to persist the location in one flow, and then have it loaded downstream. The KV Store would keep track of the location. What do you think of this?Vincent
07/20/2021, 6:25 PMKevin Kho