How can I retrieve a list of tasks in a queue that are yet to be processed?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You should look here: Celery Guide - Inspecting Workers Basically this:
Depending on what you want |
|||
|
|
I think the only way to get the tasks that are waiting is to keep a list of tasks you started and let the task remove itself from the list when it's started. With rabbitmqctl and list_queues you can get an overview of how many tasks are waiting, but not the tasks itself: http://www.rabbitmq.com/man/rabbitmqctl.1.man.html If what you want includes the task being processed, but are not finished yet, you can keep a list of you tasks and check their states:
Or you let Celery store the results with CELERY_RESULT_BACKEND and check which of your tasks are not in there. |
|||
|
|