Comment on Celery – Best PracticesComments−peedy12yHas anybody been able to make a priority queue (with a single worker) in celery?Eg, execute other tasks only if there are no pending important tasks.−jordonwii12yThe FAQ question isn't very clear about it, but it doesn't look like it's possible: http://celery.readthedocs.org/en/latest/faq.html#does-celery...−denibertovicOP12yI don't think it's possible. At least with celery. The only way I've was able to do this is with more Queues (and workers).
Comments
Has anybody been able to make a priority queue (with a single worker) in celery?
Eg, execute other tasks only if there are no pending important tasks.
The FAQ question isn't very clear about it, but it doesn't look like it's possible: http://celery.readthedocs.org/en/latest/faq.html#does-celery...
I don't think it's possible. At least with celery. The only way I've was able to do this is with more Queues (and workers).