When I run syncdb, I notice a lot of tables created like:

  • djcelery_crontabschedule
  • ...
  • djcelery_taskstate

django-kombu is providing the transport, so it can't be related to the actual queue. Even when I run tasks, I still see nothing populated in these tables. What are these tables used for? Monitoring purposes only -- if I enable it?

If so, is it also true that if I do a lookup of AsyncResult(), I'm guessing that is actually looking up the task result via the django-kombu tables instead of djcelery?

Thanks.

link|improve this question

75% accept rate
feedback

1 Answer

up vote 5 down vote accepted

The celery task_state table is populated by the daemon celerycam, is just for monitoring purpose. The other tables, like "crontabschedule" "intervals" ecc. are for schedule periodic tasks by using the django backend db, this tables are used when you launch celery in beat mode (-B) and when you have this var setted in the settings

CELERYBEAT_SCHEDULER = "djcelery.schedulers.DatabaseScheduler"

In this way you tell to celery to use the django db for schedule tasks.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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