Tagged Questions
0
votes
1answer
16 views
How can we see the threads in Celery?
I am trying to set a different number of concurrent threads in Celery using --concurrency=1 (based on Workers Guide).
Anyway, when I run the daemon (celeryd ... --concurrency=1) I don't know how to ...
0
votes
0answers
13 views
Best way to map a generated list to a task in celery
I am looking for some advice as to the best way to map a list generated from a task to another task in celery.
Let's say I have a task called parse, which parses a PDF document and outputs a list of ...
0
votes
0answers
58 views
Celery tries to connect to the wrong broker
I have in my celery configuration
BROKER_URL = 'redis://127.0.0.1:6379'
CELERY_RESULT_BACKEND = 'redis://127.0.0.1:6379'
Yet whenever I run the celeryd, I get this error
consumer: Cannot connect ...
3
votes
1answer
49 views
Understanding celery task prefetching
I just found out about the configuration option CELERYD_PREFETCH_MULTIPLIER (docs). The default is 4, but (I believe) I want the prefetching off or as low as possible. I set it to 1 now, which is ...
0
votes
1answer
90 views
Django Celerybeat PeriodicTask running far more than expected
I'm struggling with Django, Celery, djcelery & PeriodicTasks.
I've created a task to pull a report for Adsense to generate a live stat report. Here is my task:
import datetime
import httplib2
...
0
votes
1answer
20 views
celery worker lost
Our deploy process restarts celery using a kill on all the celery proceses in the process list.
Sometimes I see "worker lost" in the celery logs. If a task is running when this happens, will the task ...
0
votes
1answer
32 views
Number of celery tasks executed at a given point of time
I am trying to create a bunch of celery tasks asynchronously on the fly. Say there are 1000 tasks I start asynchronously and I have only one celeryd process running to execute tasks. How many threads ...
0
votes
1answer
30 views
Difficulty changing a Python method signature across Celery
This is probably a Captain Obvious style question, but I feel like I'm missing something.
I inherrited a Python WSGI app that creates Celery tasks. That looks like this:
#web.py
from bottle import ...
1
vote
0answers
79 views
In celery, what would be the purpose of having multiple workers process the same queue?
In the documentation for celeryd-multi, we find this example:
# Advanced example starting 10 workers in the background:
# * Three of the workers processes the images and video queue
# * Two of ...
1
vote
1answer
104 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 ...
3
votes
1answer
219 views
Python Celery task to restart celery worker
In celery, is there a simple way to create a (series of) task(s) that I could use to automagically restart a worker?
The goal is to have my deployment automagically restart all the child celery ...
0
votes
0answers
114 views
Exception when starting Flower for celery monitoring
I get an exception when starting Flower via 'flower --address=127.0.0.1 --port=5555'.
Configuration viewer is not available for Celery versions prior to 3.1
Traceback (most recent call ...
1
vote
1answer
99 views
Deployment of Celeryd to the AWS Beanstalks
I'm working on python web site which uses Celery for running long running background procesess. I plan to deploy my web site with celery worker to Beanstalk container.
Please share you expirence or ...
3
votes
1answer
171 views
Celeryd time constraint error
While running the status command I get the following error:-
Am using rabbitmq as the messaging broker
I am following this blog
sudo /etc/init.d/celeryd status
Error: No nodes replied within time ...
0
votes
1answer
48 views
Celeryd does not execute my workers
I'm trying to daemonize my tasks in celery, i've tested without daemonizing and it's working very well.
But i can't daemonize like the tutorial said ...
1
vote
1answer
180 views
Running multiple Django Celery websites on same server
I'm running multiple Django/apache/wsgi websites on the same server using apache2 virtual servers. And I would like to use celery, but if I start celeryd for multiple websites, all the websites will ...
0
votes
1answer
118 views
Running celeryd_multi as a daemon
I'm using celery 3.0.11 and djcelery 3.0.11 with python 2.7 and django 1.3.4.
I'm trying to run celeryd as a daemon and I've followed instructions from ...
0
votes
0answers
319 views
Celerybeat with Mongo Connection Error
I'm trying to set up a celery task queue with celerybeat for periodic updates on a database. My celeryd service seems to working perfectly but celerybeat keeps giving me a Connection error: [Errno ...
3
votes
0answers
305 views
How do I troubleshoot an exit timeout of celeryd when running on Heroku (error R12)?
I'm running celeryd on a Heroku dyno. When I shut it down and it has previously processed (even completed) at least one task, it doesn't shut down properly and I'm getting an error R12 (exit timeout) ...
0
votes
0answers
94 views
Celery Signal Registration and Passing Class Instances to Workers
I am currently working on an application which is highly dependent upon Celery. The application consists of subapplications, similar to the way a Django project contains apps. The purpose of doing ...
2
votes
1answer
288 views
Upstart - Django and Celeryd
I have my Ubuntu server setup so my Django project will bestarted by upstart like this:
#!/bin/bash
set -e
LOGFILE=/var/log/gunicorn/foo.log
LOGDIR=$(dirname $LOGFILE)
NUM_WORKERS=3
# ...
1
vote
0answers
65 views
Number of process and Currency and Pool Size in Celery
In celery 3.0, what are the relationship among Max concurrency, number of actually running processes and pool size ?
I run celery with max-currency( -c ) set to one and three celeryd processes pops ...
1
vote
1answer
252 views
Does the number of celeryd processes depend on the --concurrency setting?
We are running Celery behind Supervisor and start it with
celeryd --events --loglevel=INFO --concurrency=2
This, however, creates a process graph that is up to three layers deep and contains up to ...
2
votes
1answer
605 views
Setting Time Limit on specific task with celery
I have a task in Celery that could potentially run for 10,000 seconds while operating normally. However all the rest of my tasks should be done in less than one second. How can I set a time limit ...
0
votes
0answers
86 views
Redirect append output from standard python logger to the main celery logger
I have some logging happening in a function in one module (call it module a) which gets invoked by a bunch of different celery tasks in another module (module b) .... what I'm wondering is what is the ...
1
vote
1answer
136 views
celery tasks with returned data: doing it wrong or doing it right?
I'm learning to use celery. I have a function (in a Flask application) in somewhat pseudocode from what I've learned so far:
def do_a_task_route():
try:
result = ...
0
votes
1answer
173 views
Celeryd Worker stops processing tasks
I have a celeryd running with two workers, and watching them I see them accept 4 tasks each, process them, and then stop processing tasks. (Note that these tasks are long running, up to 2mins to ...
0
votes
0answers
203 views
Configuring multiple brokers for celery in the same process
Problem statement: how does one configure celery and celery tasks to use different brokers within the same runtime process. In our system, we have different durability requirements for different task ...
8
votes
1answer
346 views
Using celeryd as a daemon with multiple django apps?
I'm just starting using django-celery and I'd like to set celeryd running as a daemon. The instructions, however, appear to suggest that it can be configured for only one site/project at a time. Can ...
1
vote
2answers
551 views
Questions Concerning Using Celery with Multiple Load-Balanced Django Application Servers
I'm interested in using Celery for an app I'm working on. It all seems pretty straight forward, but I'm a little confused about what I need to do if I have multiple load balanced application servers. ...
1
vote
3answers
145 views
how to track revoked tasks in across multiple celeryd processes
I have a reminder type app that schedules tasks in celery using the "eta" argument. If the parameters in the reminder object changes (e.g. time of reminder), then I revoke the task previously sent and ...
0
votes
1answer
249 views
using celery with pyramid and mod_wsgi
I've been able to deploy a test application by using pyramid with pserve and running pceleryd (I just send an email without blocking while it is sent).
But there's one point that I don't understand: ...
6
votes
2answers
1k views
How do I restart celery workers gracefully?
While issuing a new build to update code in workers how do I restart celery workers gracefully?
Edit:
What I intend to do is to something like this.
Worker is running, probably uploading a 100 MB ...
7
votes
4answers
3k views
How to restart Celery gracefully without delaying tasks
We use Celery with our Django webapp to manage offline tasks; some of these tasks can run up to 120 seconds.
Whenever we make any code modifications, we need to restart Celery to have it reload the ...
0
votes
2answers
576 views
Cannot get django celeryd to work on Windows
I have a django project which runs just fine with runserver located in:
D:\EverTabs\work\evertabs-website\src\evertabs\
My settings.py and manage.py reside in the above path.
I open the trusty cmd ...
8
votes
1answer
926 views
Celery and Redis keep running out of memory
I have a Django app deployed to Heroku, with a worker process running celery (+ celerycam for monitoring). I am using RedisToGo's Redis database as a broker. I noticed that Redis keeps running out of ...
0
votes
1answer
321 views
Celery worker variable sharing issues
I am using Python and celery in a project. In the project, I have two files:
celeryconfig.py
BROKER_URL = "amqp://guest:guest@localhost:5672//"
CELERY_RESULT_BACKEND = "amqp"
CELERY_IMPORTS = ...
0
votes
1answer
113 views
I want to have a queue that push task to worker (celeryd) depend on interval time setting
I 'm working of project that use celery, rabbitmq. I want to have right to control interval that queue push task to worker(celeryd).
1
vote
1answer
2k views
Celery in Django (RabbitMQ vs. Django Database)
I am trying to set up Django with Celery so I can send bulk emails in the background.
I am a little confused about how the different components play into Celery. Do I need to use RabbitMQ? Can I just ...
2
votes
1answer
2k views
How can I recover unacknowledged AMQP messages from other channels than my connection's own?
It seems the longer I keep my rabbitmq server running, the more trouble I have with unacknowledged messages. I would love to requeue them. In fact there seems to be an amqp command to do this, but it ...
14
votes
1answer
8k views
Celery and Python's logging inside tasks
I'm wondering how to setup a more specific logging system. All my tasks use
logger = logging.getLogger(__name__)
as a module wide logger.
I want celery to log to "celeryd.log" and my tasks to ...
10
votes
2answers
2k views
celerybeat automatically disables periodic task
I'd like to create a periodic task for celery using django-celery's admin interface. I have a task set up which runs great when called manually or by script. It just doesn't work through celerybeat. ...
6
votes
1answer
941 views
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 the queue (in this case service celeryd stop) celeryd will stop ...

