You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
When I'm configuring in a Django app, what is the purpose of the djcelery models? Right now tables get created, but nothing flows into them. Is this the database backend replacement for Redis and RabbitMQ? Or is it something else?
-When I'm configuring in a Django app, what is the purpose of the djcelery models? Right --now tables get created, but nothing flows into them. Is this the database backend
---- replacement for Redis and RabbitMQ? Or is it something else?
Why do workers delete items from the queue if they are unable to process them (i.e. task wasn't found)?
- Several database tables are used:
What is the best way to identify if a task, based on id, exists in the queue and what its status is?
* Monitoring
How do I know if a task id is even valid?
When you use the django-admin monitor the cluster state is written
to the TaskState and WorkerState tables.
What is the preferred way to run 2 celeryd processes that are intended to handle different tasks? (i.e. proc 1 doesn't handle tasks that proc 2 is responsible for and vice versa)
* Periodic tasks
These are just a few questions I've had to start. Don't get me wrong, I got it to work and it's really nice in that regard. I just can't find information on the above issues. Thanks for reaching out :-)
When the database-backed schedule is used this takes the periodic task
schedule from the PeriodicTask model, there are also several other
-These are just a few questions I've had to start. Don't get me wrong, I got it to work ---and it's really nice in that regard. I just can't find information on the above issues. --Thanks for reaching out :-)
It is hard for people involved in a project to write good documentation for it,
as with so much knowledge about the topic it is almost impossible to know what
new users need to know.
Thank you!
I will find a way to add this to the documentation.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
When I'm configuring in a Django app, what is the purpose of the djcelery models? Right now tables get created, but nothing flows into them. Is this the database backend replacement for Redis and RabbitMQ? Or is it something else?
Why do workers delete items from the queue if they are unable to process them (i.e. task wasn't found)?
What is the best way to identify if a task, based on id, exists in the queue and what its status is?
How do I know if a task id is even valid?
What is the preferred way to run 2 celeryd processes that are intended to handle different tasks? (i.e. proc 1 doesn't handle tasks that proc 2 is responsible for and vice versa)
These are just a few questions I've had to start. Don't get me wrong, I got it to work and it's really nice in that regard. I just can't find information on the above issues. Thanks for reaching out :-)