prefect.cli
work_queue
Work queue command — native cyclopts implementation. Manage work queues.
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.work_queuecreate create(name: Annotated[str, cyclopts.Parameter(help='The unique name to assign this work queue')])
set_concurrency_limit set_concurrency_limit(name: Annotated[str, cyclopts.Parameter(help='The name or ID of the work queue')], limit: Annotated[int, cyclopts.Parameter(help='The concurrency limit to set on the queue.')])
clear_concurrency_limit clear_concurrency_limit(name: Annotated[str, cyclopts.Parameter(help='The name or ID of the work queue to clear')])
pause pause(name: Annotated[str, cyclopts.Parameter(help='The name or ID of the work queue to pause')])
resume resume(name: Annotated[str, cyclopts.Parameter(help='The name or ID of the work queue to resume')])
inspect inspect(name: Annotated[str, cyclopts.Parameter(help='The name or ID of the work queue to inspect')])
slots slots(name: Annotated[str, cyclopts.Parameter(help='The name or ID of the work queue.')])
ls ls()
preview preview(name: Annotated[str, cyclopts.Parameter(help='The name or ID of the work queue to preview')])
delete delete(name: Annotated[str, cyclopts.Parameter(help='The name or ID of the work queue to delete')])
read_wq_runs read_wq_runs(name: Annotated[str, cyclopts.Parameter(help='The name or ID of the work queue to poll')])
Was this page helpful?