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
      • Upgrade Astronomer
      • Apply a config change
        • Use a registry backend
        • Configure namespace pools
        • Configure platform resources
        • Configure component size limits
        • Overprovision Deployments
    • Book Office Hours

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
AdministrationManage platform resources

Overprovision Deployments on Astronomer Software

Edit this page
Built with
Development workloads only

Changing cluster resource provisioning is only recommended for development clusters and can result in task failures. Astronomer can’t provide support or troubleshoot issues related to overprovisioning Deployments through this configuration.

By default, Deployments specify CPU and memory requests and limits for Kubernetes in terms of Astronomer Units (AU). For example, if an Airflow scheduler uses 1AU, it has both a request and a limit of 0.1 CPU and 385 MB of memory on its given Kubernetes node. Because you can’t normally have a request lower than a limit, some Airflow components might reserve more resources on a node than they actually require.

To change this behavior, you can change the amount of CPU and memory that an AU requests, allowing you to more efficiently provision resources based on the requirements for your Deployments. This is known as overprovisioning, because it allows more Airflow component instances to exist on a single Kubernetes node.

  1. Add the following configuration to your values.yaml file. Replace the values for overProvisioningFactorMem and overProvisioningFactorCPU with the factor by which you want to set your resource requests as a percentage of your resource limits.

    1astronomer:
    2 houston:
    3 config:
    4 deployments:
    5 # This is a multiplying factor as a percentage of the limits. Defaults to 1
    6 overProvisioningFactorMem: 1
    7 overProvisioningFactorCPU: 1
    8
    9 ## (Optional) Remove components that the overprovisioning factor should not apply to
    10 overProvisioningComponents:
    11
    12 - scheduler
    13 - webserver
    14 - workers
    15 - triggerer
    16 - flower
    17 - pgbouncer
    18 - statsd
    19 - triggerer-log-groomer

    For example, if you set overProvisioningFactorMem: 0.75 and overProvisioningFactorCPU: 0.5, a scheduler using 1 AU will only request 0.075 CPU and 192.5 MB of memory on a node, allowing you to run more components on that node than before.

    By default, this configuration applies to all Airflow components. Any components that you remove from overProvisioningComponents will not have overprovisioning applied.

  2. Save the values.yaml file and push the configuration change to your platform. See Apply a config change. After the change is applied, new Deployments automatically use the updated AU definition.

  3. Redeploy code to your existing Deployments to have them start using your updated AU definition. See Deploy code.