create_work_queue
Create a work queue to organize and manage workflow execution in Prefect, allowing control over queue behavior with options for pausing, concurrency limits, and descriptions.
Instructions
Create a work queue.
Args: name: The name for the work queue description: Optional description is_paused: Whether the queue should be paused upon creation concurrency_limit: Optional concurrency limit
Returns: Details of the created work queue
Input Schema
Name | Required | Description | Default |
---|---|---|---|
concurrency_limit | No | ||
description | No | ||
is_paused | No | ||
name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"concurrency_limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Concurrency Limit"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Description"
},
"is_paused": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Is Paused"
},
"name": {
"title": "Name",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}