Scott Pedersen
10/13/2025, 9:38 PMconcurrency_limit and collision_strategy available in Prefect v2.x or exclusive to Prefect v3.x?Marvin
10/13/2025, 9:38 PMMarvin
10/13/2025, 9:39 PMconcurrency_limit and collision_strategy are Prefect 3.x features. They are not available in Prefect 2.x.
In Prefect 2.x, concurrency was managed via global concurrency limits (typically applied to task tags) rather than per-deployment settings. See:
- Prefect 2.x global concurrency limits: Docs (2.x)
In Prefect 3.x, you can manage concurrency more granularly, including at the deployment level, and also use the CLI to manage limits:
- Prefect 3.x global concurrency limits: Docs (3.x)
- Prefect 3.x CLI for concurrency limits: CLI reference (3.x)
If you’re on 2.x and want similar behavior, the closest approach is to use global concurrency limits on tags and/or control concurrency within a single flow run via the task runner settings. If you’d like, I can show a quick example for 3.x deployments using these fields.