Hey is there a way to run the same flow is paralle...
# prefect-community
j
Hey is there a way to run the same flow is parallel with different parameters
👍 1
c
Hi @John Ramirez apologies for the delay here - if you are using the Prefect API you can call
create_flow_run
as many times as you’d like with different parameter sets, and as soon as an Agent picks them up they will begin running in parallel
b
What about on a schedule @Chris White? (I believe the current implementation simple writes over?)
c
In that case I’d recommend using the same base clock, but on one clock add an adjustment of 1 second to prevent the overlapping times; for how to add adjustments to clocks check out: https://docs.prefect.io/core/concepts/schedules.html#complex-schedules
b
😂 1