How does one check whether a task is running in celery (specifically, I'm using celery-django)?

I've read the documentation, and I've googled, but I can't see a call like:

my_example_task.state() == RUNNING

My use-case is that I have an external (java) service for transcoding. When I send a document to be transcoded, I want to check if the task that runs that service is running, and if not, to (re)start it.

I'm using the current stable versions - 2.4, I believe.

link|improve this question

feedback

2 Answers

Return the task_id (which is given from .delay()) and ask the celery instance afterwards about the state:

x = method.delay(1,2)
print x.task_id

When asking, get a new AsyncResult using this task_id:

from celery.result import AsyncResult
res = AsyncResult("your-task-id")
res.ready()
link|improve this answer
Thanks, but what if I don't have access to x? – Marcin Jan 27 at 16:05
Where do you enqueue your jobs into celery? There you have to return the task_id to track the job in the future. – Gregor Jan 27 at 16:08
feedback
up vote -1 down vote accepted

Every Task object has a .request property, which contains it AsyncRequest object. Accordingly, the following line gives the state of a Task task:

task.AsyncResult(task.request.id).state
link|improve this answer
Is there a way to store the percentage of progress of a task? – patrick Apr 25 at 21:33
@patrick Store, or retrieve? Either way, I don't know. – Marcin Apr 25 at 21:49
resolved with update_state and result ;) – patrick Apr 29 at 10:15
@patrick Well done! How did you do it? – Marcin Apr 29 at 11:52
2  
Here it is a sample task: dpaste.com/hold/739759 and here is the code where I get the status: dpaste.com/hold/739762 ;) – patrick Apr 29 at 12:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.