celery
Celery task schedule (Celery, Django and RabbitMQ)
I want to have a task that will execute every 5 minutes, but it will wait for last execution to finish and then start to count this 5 minutes. (This way I can also be sure that there is only one task[详细]
2023-02-17 16:06 分类:问答Celery Task that comunicate with Twitter
What is the right approach when writing celery tasks that communicate with service that have a rate limits and sometimes is missing (not responding) for a long time of period?[详细]
2023-02-17 14:30 分类:问答Retry Lost or Failed Tasks (Celery, Django and RabbitMQ)
Is there a way to determine if any task is lost and retry it? I think that the reason for lost can be dispatcher bug or worker thread crash.[详细]
2023-02-17 04:13 分类:问答Celery/Redis some (many) messages getting dropped
I\'m using Celery (2.2.4) with Redis (v.2.2.2) as my message broker. Any idea what would caus开发者_如何学编程e SOME (most) messages to randomly and inconsistently get lost?The only reason that seem[详细]
2023-02-15 14:57 分类:问答Retry a task in celery by task_id
I\'ve launched a lot of tasks, but some of then hasn\'t finished (763 tasks), are in PENDING state, but the sy开发者_运维问答stem isn\'t processing anything...[详细]
2023-02-13 16:50 分类:问答Task state not updating when using custom state
I have a task like this: @task def test(): time.sleep(10) test.update_state(state=\"PROGRESS\") time.sleep(10)[详细]
2023-02-12 17:04 分类:问答Why is RabbitMQ not persisting messages on a durable queue?
I am using RabbitMQ with Django through Celery. I am using the most basic setup: # RabbitMQ connection settings[详细]
2023-02-12 12:55 分类:问答Problems stopping celeryd
I\'m running celeryd as a daemon, but I sometimes have trouble stopping it gracefully. When I send the TERM signal and there are items in th开发者_运维知识库e queue (in this case service celeryd stop)[详细]
2023-02-11 18:36 分类:问答Experiences with message based master-worker frameworks (Java/Python/.Net)
I am designing a distributed master-worker system which, from 10,000 feet, consists of: Web-based UI a master component, responsible for generating jobs according to a configurable set of algorithms[详细]
2023-02-11 06:24 分类:问答Retrying tasks with Django-Celery - Django/Celery
I\'m having problems retrying tasks, here is what a test task looks like from celery.decorators import task[详细]
2023-02-08 02:48 分类:问答