post_pool
Creates and manages resource pools in Apache Airflow, specifying name, slots, and optional details to optimize task scheduling and resource allocation.
Instructions
Create a pool
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | ||
include_deferred | No | ||
name | Yes | ||
slots | Yes |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Description"
},
"include_deferred": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Include Deferred"
},
"name": {
"title": "Name",
"type": "string"
},
"slots": {
"title": "Slots",
"type": "integer"
}
},
"required": [
"name",
"slots"
],
"title": "post_poolArguments",
"type": "object"
}