The Django Celery documentation suggests there are URLs I can check to get the status of a task: http://packages.python.org/django-celery/reference/djcelery.urls.html

What are these URLs?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

To access these URLs, you need to include them from one of your urls.py files. For example:

urlpatterns = patterns('',
    url('^tasks/', include('djcelery.urls')),
)

You would then access them using, for example, http://example.com/tasks/{{ task_id }}/status/.

link|improve this answer
thanks. If you are familiar with djcelery, can you explain these where the content at these urls is coming from? Are the task statuses written to the djcelery tables in the database? If they are just coming from the rabbitmq server, how long are the tasks registered with there? until the server is restarted? Does that take up memory to store so many task results? thanks again. – sequoia Aug 6 '11 at 5:55
1  
I'd love to answer those questions, and they seem like they would be generally useful. Post them as new questions and link to them here, and I'll answer them there. – David Wolever Aug 6 '11 at 5:58
Thanks for the help david. I have created a new SO entry for these questions: stackoverflow.com/questions/6987453/… – sequoia Aug 8 '11 at 19:27
feedback

Your Answer

 
or
required, but never shown

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