If I have a flow running every hour but something causes the flow to take more than an hour, can Prefect delay or cancel an execution so that they are not overlapping?
✅ 1
s
scott
05/15/2023, 8:53 PM
not afaik, we’ve rolled our own solution. their task or flow run concurrency limit works the opposite way where the new run would be delayed until the existing run exits.
e
Evan
05/15/2023, 8:55 PM
oh maybe that concurrency is what i’m looking for.
is the concurrency limit for a particular task/flow or is it global?
i.e., i can only globally run 1 flow at a time or multiple flows can be running at the same time but only 1 instance of each flow will run at a time?