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
12/03/2021, 4:34 PMStartFlowRun
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
12/03/2021, 4:52 PMjack
12/03/2021, 4:54 PMKevin Kho
12/03/2021, 5:46 PMclient.graphql()
method with your query to pull the infojack
12/03/2021, 5:52 PMKevin Kho
12/03/2021, 5:54 PMjack
12/03/2021, 5:56 PMKevin Kho
12/03/2021, 5:58 PMjack
12/03/2021, 5:59 PMKevin Kho
12/03/2021, 6:02 PM