I noticed that when using `wait=True` for `StartFl...
# ask-community
v
I noticed that when using
wait=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.
k
Hey @Vincent, that would be right since the
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?
v
thanks for the suggestion. I will investigate the KVStore feature.
k
Linking here just in case you haven’t found it yet