prefect.cli
global_concurrency_limit
Global-concurrency-limit command — native cyclopts implementation. Manage global concurrency limits.
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
prefect.cli.global_concurrency_limitls ls()
inspect inspect(name: str)
delete delete(name: str)
enable enable(name: str)
disable disable(name: str)
update update(name: str)
$ prefect global-concurrency-limit update my-gcl --limit 10
$ prefect gcl update my-gcl --active-slots 5
$ prefect gcl update my-gcl --slot-decay-per-second 0.5
$ prefect gcl update my-gcl --enable
$ prefect gcl update my-gcl --disable --limit 5
create create(name: str)
$ prefect global-concurrency-limit create my-gcl --limit 10
$ prefect gcl create my-gcl --limit 5 --active-slots 3
$ prefect gcl create my-gcl --limit 5 --active-slots 3 --slot-decay-per-second 0.5
$ prefect gcl create my-gcl --limit 5 --disable
Was this page helpful?