For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
      • AstroFully-managed data operations, powered by Apache Airflow.
      • Astro Private CloudRun Airflow-as-a-service in your environment.
      • Professional ServicesExpert Airflow services for your enterprise's success.
    • Tools
      • Cosmos
      • Orbiter
      • CLI
      • AI SDK
      • Agents
      • Blueprint
      • UpdatesThe State of Airflow 2026See the insights from over 5,800 data practitioners in the full report. Download Now ➔
  • Customers
  • Docs
    • Insights
      • Blog
      • Webinars
      • Resource Library
      • Events
    • Education
      • Academy
      • What is Airflow?
  • Pricing
Get Started Free
    • Astro Private Cloud overview
    • Astro Private Cloud features
      • Use a registry backend
      • Configure namespace pools
      • Configure platform resources
      • Configure component size limits
      • Overprovision Airflow components
      • Add Pod labels

Product

  • Platform Overview
  • Astro
  • Astro Observe
  • Astro Private Cloud
  • Security & Trust
  • Pricing

Tools & Services

  • Cosmos
  • Docs
  • Professional Services
  • Product Updates

Use Cases

  • AI Ops
  • Data Observability
  • ETL/ELT
  • ML Ops
  • Operational Analytics
  • All Use Cases

Industries

  • Financial Services
  • Gaming
  • Retail
  • Manufacturing
  • Healthcare
  • All Industries

Resources

  • Academy
  • eBooks & Guides
  • Blog
  • Webinars
  • Events
  • The Data Flowcast Podcast
  • All Resources

Airflow

  • What is Airflow
  • Airflow on Astro
  • Airflow 3.0
  • Airflow Upgrades
  • Airflow Use Cases
  • Airflow 2.x End of Life

Company

  • Our Story
  • Customers
  • Newsroom
  • Careers
  • Contact

Support

  • Knowledge Base
  • Status
  • Contact Support
GitHubYouTubeLinkedInx
  • Legal
  • Privacy
  • Terms of Service
  • Consent Preferences

  • Do Not Sell or Share My Personal information
  • Limit the Use Of My Sensitive Personal Information

Apache Airflow®, Airflow, and the Airflow logo are trademarks of the Apache Software Foundation. Copyright © Astronomer 2026. All rights reserved.

LogoLogo
On this page
  • How overprovisioning works
  • Configure overprovisioning
  • Supported components
  • Choose factor values
  • Best practices
Manage Platform resources

Overprovision Airflow components

Edit this page
Built with

Overprovisioning in Astro Private Cloud (APC) is a cluster-level setting that sets resource requests for selected Airflow components to a fraction of their limits. This allows the scheduler to pack more pods on nodes (bin-packing) while still allowing bursts up to the limit when needed.

How overprovisioning works

You configure three values in your cluster’s deployment config:

  • overProvisioningFactorCPU: Fraction of the CPU limit used as the CPU request (0 < value ≤ 1).
  • overProvisioningFactorMem: Fraction of the memory limit used as the memory request (0 < value ≤ 1).
  • overProvisioningComponents: List of component names that receive the overprovisioning factor.

For each component in the list, requests are set as:

  • requests.cpu = limits.cpu × overProvisioningFactorCPU
  • requests.memory = limits.memory × overProvisioningFactorMem

For example, if a component has limits: { cpu: "2000m", memory: "4Gi" } and both factors are 0.5, then requests become { cpu: "1000m", memory: "2Gi" }. Default factors of 1 mean no change (requests equal limits).

Configure overprovisioning

Set these keys in your cluster config (for example, in the cluster’s deployment config or the values used when registering the cluster). Values must be greater than 0 and less than or equal to 1.

1overProvisioningFactorCPU: 0.5
2overProvisioningFactorMem: 0.5
3overProvisioningComponents:
4 - scheduler
5 - webserver
6 - apiServer
7 - workers
8 - triggerer
9 - flower
10 - pgbouncer
11 - statsd
12 - dagProcessor

Only components that have resources defined in the deployment config are affected. Components not listed in overProvisioningComponents keep their existing request/limit values.

Supported components

You can include any of these in overProvisioningComponents:

ComponentDescription
schedulerAirflow scheduler
apiServerAirflow API server
webserverAirflow webserver
workersCelery workers
triggererAirflow triggerer
flowerFlower (Celery UI)
pgbouncerPgBouncer
statsdStatsD exporter
dagProcessorDag processor

Choose factor values

  • 1 (default): No overprovisioning; requests equal limits. Use when you want predictable capacity and no bin-packing.
  • 0.5: Requests are half of limits. Common choice for better bin-packing while keeping headroom.
  • Lower values (for example, 0.25): More aggressive bin-packing; ensure your workloads can tolerate less guaranteed CPU/memory.

Start with 0.5 for CPU and memory and adjust based on utilization and scheduling behavior.

Best practices

  • Apply factors per cluster: Overprovisioning applies at the cluster level; all deployments on the cluster use the same factors for the listed components.
  • Include only components that have resources: Only components with resources.limits (and optionally resources.requests) in the deployment config receive modifications; listing others has no effect.
  • Monitor utilization: After enabling, watch pod scheduling and resource usage to confirm the factors match your workload and node capacity.