Skip to content
Discussion options

You must be logged in to vote

could be caused by

  • worker resource exhaustion If using Celery/KubernetesExecutor, workers might be overloaded.
  • scheduler overload, it can't keep up with parsing and scheduling all DAGs.
# Increase worker resources or adjust concurrency
[celery]
worker_concurrency = 8  # Reduce if tasks are memory-intensive

# Or use pools for resource management
# In Airflow UI: Admin -> Pools
# Create pools for different resource requirements

if it scheduler overload

# Increase scheduler resources
[scheduler]
max_threads = 4                    # Increase from default 2
parsing_processes = 2              # If you have multiple CPU cores
scheduler_heartbeat_sec = 3        # Faster heartbeat detection

#…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by lakabosch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants