Complete the code to set the executor to Celery in airflow.cfg.
[core]
executor = [1]Setting executor = CeleryExecutor enables distributed task execution using Celery workers.
Complete the Celery broker URL to use Redis as the message broker.
broker_url = [1]The Redis URL redis://localhost:6379/0 configures Celery to use Redis as the broker.
Fix the error in the Celery result backend URL to use Redis correctly.
result_backend = [1]The Redis result backend URL must specify the database number, like /0.
Fill both blanks to configure Celery worker concurrency and log level.
[celery] worker_concurrency = [1] worker_log_level = [2]
Setting worker_concurrency = 8 allows 8 parallel tasks. worker_log_level = INFO sets standard logging verbosity.
Fill all three blanks to complete the Celery task routing configuration.
[celery]
task_routes = {"my_task": {"queue": [1], "routing_key": [2], "exchange": [3]Tasks routed to high_priority queue use high.key routing key and high_exchange exchange for prioritized processing.