jack
12/03/2021, 4:31 PMclient.create_flow_run()
to create several flow runs (using ECSRun), and then polling each with client.get_flow_run_state
to know when all the flows have completed.
When one of the flows fails (and prefect starts a new flow run to take its place), how can we check when the rerun is complete (and whether it succeeded)?Kevin Kho
StartFlowRun
task will give you want you want because it `raise`s the end state of the flow is you set wait=True
StartFlowRun(…).run(...)
outside of a flowjack
12/03/2021, 4:47 PMKevin Kho
jack
12/03/2021, 4:54 PMKevin Kho
client.graphql()
method with your query to pull the infojack
12/03/2021, 5:52 PMKevin Kho
jack
12/03/2021, 5:56 PMKevin Kho
jack
12/03/2021, 5:59 PMKevin Kho