Tagged Questions
1
vote
0answers
56 views
What's the best way to implement parallel tasks with Django and Elastic beanstalk?
I have been trying to implement celery with django and elastic beanstalk with SQS, but I still don't know how should I start the workers in background, it seems that I need to create an AMI outside of ...
1
vote
1answer
123 views
How does a Celery worker consuming from multiple queues decide which to consume from first?
I am using Celery to perform asynchronous background tasks, with Redis as the backend. I'm interested in the behaviour of a Celery worker in the following situation:
I am running a worker as a daemon ...
0
votes
0answers
115 views
In celery, how to ensure tasks are retried when worker crashes
First of all please don't consider this question as a duplicate of this question
I have a setup an environment which uses celery and redis as broker and result_backend. My question is how can I ...
0
votes
1answer
112 views
Django Job queue for interfacing with celery
My django web-app logic is heavily geared towards background task execution (both periodic as well as stand alone, synchronous as well as asynchronous). All the research seems to point to using Celery ...
1
vote
1answer
495 views
Pros and cons to use Celery vs. RQ
Currently I'm working on python project that requires implement some background jobs (mostly for email sending and heavily database updates). I use Redis for task broker. So in this point I have two ...
0
votes
1answer
88 views
Best way to launch scheduled jobs for a python script (bot)
I'm trying to build a Twitter bot that does a set of periodic actions that have different time intervals/periods. So I was trying to come up with a good solution to handle a group of scheduled tasks ...
0
votes
1answer
127 views
Import models tasks celery
I'm trying to find out how to import models in my tasks.py in celery.
In the moment my project structure is the following:
/mainApp
-celery_instance
-__init.py__
-celery.py
...
3
votes
1answer
205 views
Dynamically Changing Celery Beat Settings
Is there a way to tell celerybeat to change settings for a specific task while it is running?
The utility of this is best illustrated in this example:
I have a periodic task that checks a value ...
0
votes
1answer
149 views
Scheduling Push Notifications via a Web UI
I'm digging into creating a simple web interface for scheduling iOS push notifications to occur either at a specific time or periodically in the future.
For example, someone could use this ...
0
votes
2answers
604 views
Django celery crontab every 30 seconds - is it even possible?
Is it possible to run the django celery crontab very 30 seconds DURING SPECIFIC HOURS?
There are only settings for minutes, hours and days.
I have the crontab working, but I'd like to run it every ...
0
votes
2answers
2k views
Celery - schedule periodic tasks starting at a specific time
Edit : I've accepted @bakennedy answer confirming my original thoughts, that is:
'Yes, but not out of the box'.
A good combo for this seems Celery + APSCheduler.
Original question :
What is the ...
0
votes
2answers
402 views
Django schedule task on timeout
I have a time-out set on an entity in my database, and a state (active/finished) assigned to it. What I want is to change that entity's state to finished when that time-out expires. I was thinking of ...
5
votes
2answers
3k views
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
@task()
def add(x, y):
if not x or not y:
raise Exception("test error")
...
2
votes
1answer
1k views
How can I configure different worker pools using celery?
I need to deploy a queued execution service with (generally) the following three classes of worker:
A periodic, low-priority job class that takes a long time and can be processed serially; these ...
6
votes
1answer
1k views
How do I schedule a task with Celery that runs on 1st of every month?
How do I schedule a task with celery that runs on 1st of every month?
5
votes
4answers
3k views
How can I schedule a Task to execute at a specific time using celery?
I've looked into PeriodicTask, but the examples only cover making it recur. I'm looking for something more like cron's ability to say "execute this task every Monday at 1 a.m."

