<@ULVA73B9P> can you give me documentation on conc...
# marvin-in-the-wild
s
@Marvin can you give me documentation on concurrency limit
m
Certainly, here are the resources on concurrency limits in Prefect: 1. Global Concurrency Limits Guide: - This guide explains how to create, inspect, update, and delete concurrency limits using the Prefect CLI. - Link: Global Concurrency Limits Guide Example Commands: - Create a concurrency limit:
Copy code
bash
     prefect gcl create my-concurrency-limit --limit 5 --slot-decay-per-second 1.0
- Inspect a concurrency limit:
Copy code
bash
     prefect gcl inspect my-concurrency-limit
- Update a concurrency limit:
Copy code
bash
     prefect gcl update my-concurrency-limit --limit 10
- Delete a concurrency limit:
Copy code
bash
     prefect gcl delete my-concurrency-limit
2. Tasks Concept Documentation: - Describes how to interact with concurrency limits at the task level and ensure that no more than a specified number of tasks interact with shared resources. - Link: Tasks Concept Documentation Feel free to explore these guides for detailed instructions and examples. How delightful.