Prioritizing queues among multiple queues in celery?

前端 未结 3 1670
轮回少年
轮回少年 2021-02-20 13:51

We are using celery for our asynchronous background tasks and we have 2 queues for different priority tasks. We have 2 cluster of nodes serving them separately. Things are worki

3条回答
  •  迷失自我
    2021-02-20 14:31

    This is now possible with Celery >= 4.1.1 + Redis transport (probably earlier version too). You just need to set a broker transport option in your celeryconfig.py module. This setting was implemented with Kombu 4.0.0.

    broker_transport_options = {
      visibility_timeout: 1200,  # this doesn't affect priority, but it's part of redis config
      queue_order_strategy: 'priority'
    }
    

    It's also possible to specify with an environment variable.

    For a worker started with $ celery -A proj worker -l info -Q Q1,Q2 the idle worker will check Q1 first and execute Q1 tasks if available before checking Q2.

    source

    Bonus off topic help, this also works with Airflow 1.10.2 workers, except it seems like the queue order is not preserved from the command line. Using 'queue_order_strategy'='sorted' and naming your queues appropriately works (Q1, Q2 would work perfectly). Airflow pool-based priority is not preserved between dags so this really helps!

提交回复
热议问题