如何设置芹菜队列中的最大工作人员?

How to set the max worker in celery queue?

我将 celery4.xDjango 一起使用,并且在我的 celery 队列中有两个以上的任务。由于GPU的限制,我最多只能同时运行两个。有没有办法让第三个任务等待 运行 直到前两个任务之一?我在 Djangosettings.py 中设置了 CELERYD_CONCURRENCY 参数,这似乎不起作用。

有人知道吗?谢谢

运行 您的工人使用 concurrency 参数:

celery -A proj worker -l info --concurrency 2 -Q queue_name