Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions airflow/config_templates/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1762,8 +1762,10 @@ celery:
worker_enable_remote_control:
description: |
Specify if remote control of the workers is enabled.
When using Amazon SQS as the broker, Celery creates lots of ``.*reply-celery-pidbox`` queues. You can
prevent this by setting this to false. However, with this disabled Flower won't work.
In some cases when the broker does not support remote control, Celery creates lots of
``.*reply-celery-pidbox`` queues. You can prevent this by setting this to false.
However, with this disabled Flower won't work.
https://docs.celeryq.dev/en/stable/getting-started/backends-and-brokers/index.html#broker-overview
version_added: 2.3.0
type: boolean
example: ~
Expand Down
6 changes: 4 additions & 2 deletions airflow/config_templates/default_airflow.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -896,8 +896,10 @@ worker_concurrency = 16
worker_prefetch_multiplier = 1

# Specify if remote control of the workers is enabled.
# When using Amazon SQS as the broker, Celery creates lots of ``.*reply-celery-pidbox`` queues. You can
# prevent this by setting this to false. However, with this disabled Flower won't work.
# In some cases when the broker does not support remote control, Celery creates lots of
# ``.*reply-celery-pidbox`` queues. You can prevent this by setting this to false.
# However, with this disabled Flower won't work.
# https://docs.celeryq.dev/en/stable/getting-started/backends-and-brokers/index.html#broker-overview
worker_enable_remote_control = true

# The Celery broker URL. Celery supports RabbitMQ, Redis and experimentally
Expand Down