get_pool
Retrieve real-time capacity and utilization details for Apache Airflow resource pools, including available slots, running tasks, and queued workloads.
Instructions
Get detailed information about a specific resource pool.
Use this tool when the user asks about:
"Show me details for pool X" or "What's the status of pool Y?"
"How many slots are available in pool Z?" or "Is pool X full?"
"What's using pool Y?" or "How many tasks are running in pool X?"
"Get information about the default_pool" or "Show me pool details"
Pools are used to limit parallelism for specific sets of tasks. This returns detailed real-time information about a specific pool's capacity and utilization.
Returns detailed pool information including:
name: Name of the pool
slots: Total number of available slots in the pool
occupied_slots: Number of currently occupied slots (running + queued)
running_slots: Number of slots with currently running tasks
queued_slots: Number of slots with queued tasks waiting to run
open_slots: Number of available slots (slots - occupied_slots)
description: Human-readable description of the pool's purpose
Args: pool_name: The name of the pool to get details for (e.g., "default_pool")
Returns: JSON with complete details about the specified pool
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pool_name | Yes |