docs/v3/api-ref/cli/gcl.mdx
prefect gclprefect gcl [OPTIONS] COMMAND [ARGS]...
prefect gcl lsprefect gcl ls [OPTIONS]
prefect gcl inspectprefect gcl inspect [OPTIONS] NAME
prefect gcl deleteprefect gcl delete [OPTIONS] NAME
prefect gcl enableprefect gcl enable [OPTIONS] NAME
prefect gcl disableprefect gcl disable [OPTIONS] NAME
prefect gcl updateprefect gcl update [OPTIONS] NAME
$ 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 </Note>
prefect gcl createprefect gcl create [OPTIONS] NAME
Arguments:
name (str): The name of the global concurrency limit to create.
limit (int): The limit of the global concurrency limit.
disable (Optional[bool]): Create an inactive global concurrency limit.
active_slots (Optional[int]): The number of active slots.
slot_decay_per_second (Optional[float]): The slot decay per second.
Examples:
\$ 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 --inactive