Questions tagged [celerybeat]

The Celery periodic task scheduler

Celery beat is a scheduler for periodic tasks in Celery. It provides useful functions to create and execute tasks on certain intervals, with support for fail-over, retries, status tracking etc. For more info look at project documentation: http://celery.github.com/celery/internals/reference/celery.beat.html

514 questions
-1
votes
1 answer

Why can't celery worker connect to rabbitmq using docker compose

I am trying to combine my services using docker compose but my celery and celery beat services can't connect with my rabbitmq service. Here is my rabbitmq service in the docker-compose.yml file rabbitmq: container_name: "rabbitmq" image:…
redd
  • 33
  • 6
-1
votes
2 answers

Reload celery beat config

I'm using celery and celery-beat without Django and I have a task which needs to modify celery-beat schedule when run. Now I have the following code (module called celery_tasks): # __init__.py from .celery import app as celery_app __all__ =…
pomo_mondreganto
  • 2,028
  • 2
  • 28
  • 56
-1
votes
1 answer

Run celery periodic tasks on one machine only

I am working on a django project where I am using celery. I have three two big modules in the project named app1 and app2. I have created two celery apps for that which are running on two separate machines. In the app1 and app2 there are different…
-2
votes
1 answer

periodic tasks at random time intervals in a day celery django

I have to download some files from source at 10AM,1PM and 12AM in a day and after downloading is done,I need to send them to my database. I want to do this daily. What should i write in the space for "code for periodic tasks". Also please tell me if…
1 2 3
34
35