celery
django celery: how to set task to run at specific interval programmatically
I found that I can set the task to run at specific interval at specific times from here, but that was only done dur开发者_Python百科ing task declaration. How do I set a task to run periodically dynami[详细]
2023-03-30 14:18 分类:问答Temporary queue made in Celery
I am using Celery with RabbitMQ. Lately, I have noticed that a large number of temporary queues are getting made.[详细]
2023-03-30 05:48 分类:问答Deleting all pending tasks in celery / rabbitmq
How can I delete all pending tasks without knowing the task_id for each 开发者_Python百科task?From the docs:[详细]
2023-03-29 16:09 分类:问答Celery result.get times out
I have two different django projects say projA and projB, each have its own celery daemon running on separate queues but same vhost, projA have a task taskA and projB have a task taskB, I try to run t[详细]
2023-03-29 15:52 分类:问答django djcelery: building a transactional task is not rolling back
am trying to do a transactional tasks whereby the task will rollback the database updates if it fails to send the email.[详细]
2023-03-29 14:18 分类:问答Python-compatible distributed messaging/task system (like Celery) that uses domain sockets
Is there anything like Celery that works with unix domain sockets? My current host (dreamhost) forbids the running of servers that listen on IP sockets, so I need something that will work with domain[详细]
2023-03-28 15:13 分类:问答Can I restart a FAILED celery task?
I am using celery with the djkombu queue. I\'ve set max_retries=3 for my task. Once the 3rd retry fails, it开发者_运维知识库 executes the after_return method with status=FAILURE. The method also rece[详细]
2023-03-27 02:53 分类:问答Celery: standard method for querying pending tasks?
Is there any standard/backend-independent method for querying pending ta开发者_如何学JAVAsks based on certain fields?[详细]
2023-03-26 19:40 分类:问答Where is the data provided by django-celery urls stored? How long is the data available? And what is the memory consumption?
I am starting a project using django celery and I am making ajax calls to the task urls provided by \'djcelery.urls\'.[详细]
2023-03-26 13:51 分类:问答Interoperating with Django/Celery From Java
Our company has a Python based web site 开发者_运维知识库and some Python based worker nodes which communicate via Django/Celery and RabbitMQ. I have a Java based application which needs to submit task[详细]
2023-03-26 05:15 分类:问答