Hello, what is the proper way of triggering the same flow with different parameters in prefect 2, and then wait for all of them to finish. Example of what I want to achieve:
Copy code
flow_run_ids=[]
for param in params:
flow_run_id = create_flow_run(
flow=flow_model,
parameters=run_params,
name=run_name,
state=state
)
flow_run_ids.append(flow_run_id)
wait_for_flows(flow_run_ids)
Bring your towel and join one of the fastest growing data communities. Welcome to our second-generation open source orchestration platform, a completely rethought approach to dataflow automation.