django-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 分类:问答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 分类:问答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 分类:问答Allow Celery Worker to consume messages from non task queue
I have a django backend which is running Celery for distributed tasks. I have created a Service bus queue which stores temperature data coming from hundred of frontend devices.[详细]
2022-12-07 17:48 分类:问答