Tagged Questions
0
votes
0answers
12 views
Celery and Django - Running worker as Daemon (Mac OS X)
I have a Django project in Mac OS X (10.8.4) with an application that intends to model an airport. In the database, SQLite, I have several tables and one of them is for flight delays (flight, date, ...
0
votes
1answer
14 views
Django-celery doesn't restore all tasks after restart
I'm using django ORM as a celery broker, when I schedule tasks and kill celery worker (by hitting ctr+c) before tasks completion, and restart celery again, it doesn't restore all the tasks!! why is ...
1
vote
1answer
28 views
How to run multiple Celery daemons for each Vhost
How do you setup a Celery daemon so it executes tasks for multiple separate Django sites?
I have several separate Django sites running on the same host, and I want to support Celery-powered ...
0
votes
1answer
15 views
Celery: Running tasks when they are modular
I am using celery to run scheduled tasks in django. My tasks are in tasks.py .
The thing if I break my function to smaller ones like this :
@periodic_task(run_every=crontab())
def run_something():
...
2
votes
1answer
32 views
What can I do if celery sometimes forgets task?
I have problem with latest version of celery (3.0.19).
I have very simple task:
@celery.task()
def last_uid():
return 100
i execute it by
uid = last_uid.apply_async(None, ...
0
votes
0answers
10 views
How to show correct hostname in Celery error emails
How do you make Celery show the actual hostname in the subject line of any error emails it sends?
Following the documentation, in my settings.py, I have:
CELERY_SEND_TASK_ERROR_EMAILS=True
...
0
votes
1answer
26 views
How to send periodic tasks to specific queue in Celery
By default Celery send all tasks to 'celery' queue, but you can change this behavior by adding extra parameter:
@task(queue='celery_periodic')
def recalc_last_hour():
log.debug('sending new ...
0
votes
1answer
42 views
Is there a simple manage.py command that I run with django-celery to daemonize celery in production?
I've followed the guide at celery project page to daemonize the process with no success so far. I was wondering if there is a simple manage.py command to ease this process. I'm using django 1.5.
0
votes
2answers
115 views
daemonizing celery process celeryd-multi not found
I'm trying to daemonize the celery process for django running inside a virtualenv. I copied the celeryd file from https://github.com/celery/celery/tree/master/extra/generic-init.d to /etc/init.d/
I ...
0
votes
0answers
6 views
celery django BROKER_CONNECTION_MAX_RETRIES
I am trying to create a sample to see how celery(3.0.17) works with rabbitmq(2.5.0) on ubuntu 11.04. I have followed instructions on ...
0
votes
1answer
20 views
Django script configuration for beat mode
Below is my current /etc/init.d/celeryd script:
# Name of nodes to start, here we have a single node
#CELERYD_NODES="w1"
# or we could have three nodes:
CELERYD_NODES="w1 w2 w3"
# Where to chdir at ...
0
votes
0answers
34 views
Celery beat queue includes obsolete tasks
I'm using periodic celery tasks with Django. I used to have the following task in my app/tasks.py file:
@periodic_task(run_every=timedelta(minutes=2))
def stuff():
...
But now this task has been ...
4
votes
0answers
51 views
How to log exceptions occurring in a django celery task
I have set up celery to work with my django application using their daemonization instructions (http://docs.celeryproject.org/en/latest/tutorials/daemonizing.html#daemonizing)
Here is my test task
...
1
vote
0answers
40 views
django-celery needs celeryconfig?
I'm trying to setup celery on windows with django 1.5. I've got rabbitMQ installed, and now the command python manage.py celery worker --loglevel=info --settings=settings appears to start ok, but ...
0
votes
0answers
16 views
Celery client only gets one response
I've got a Django app and I'm trying to integrate Celery. I've got everything talking and can get a single result every time. However, when I try to get a second result, the response stays in pending ...
0
votes
2answers
88 views
Celery Tutorial Works Correctly in standard iPython shell but not when using Django's embedded iPython shell
I've been setting up a test instance of django-celery and going through some of the basic celery examples and came across something that seems odd.
I first went through the "First steps with ...
0
votes
1answer
72 views
Django Celery - How to start a task with a delay of n - seconds - countdown flag is ignored
In my Django project I'm running some asynchronous tasks using Celery (docs), Django-Celery and RabbitMQ as the broker. Whereas it works in general, I have two problems with my setup:
a) the task ...
0
votes
1answer
83 views
Stopping celery task gracefully
I'd like to quit a celery task gracefully (i.e. not by calling revoke(celery_task_id, terminate=True)). I thought I'd send a message to the task that sets a flag, so that the task function can return. ...
0
votes
1answer
69 views
Celery connection broker lost makes CPU usage go to 100%
We've been getting strange issues with Celery when the MainProcess it loses connection to the broker. Celery generates the error below and then starts using 100% CPU. The workers will still continue ...
0
votes
1answer
22 views
Is there a way to validate the broker's SSL certificate in django-celery?
I'm using django-celery do connect to a RabbitMQ broker through SSL (with the BROKER_USE_SSL setting). Is there a way to:
Verify the certificate of the broker when the connection is established.
...
2
votes
0answers
67 views
heroku celery exceeding connection limit
I am using Django/Celery on Heroku with the CloudAMQP add-on. In my settings file if I set BROKER_POOL_LIMIT to any value other than None I quickly exceed my CloudAMQP connection limit of 6. I'm ...
1
vote
0answers
49 views
Setting up Celery with Django without any SQL
I have a Django app running on Gunicorn/Gevent, without any SQL database. I don't use Django's ORM at all, my database is mongoDB, using the mongoengine ORM. I would like to use Celery for ...
2
votes
0answers
31 views
django celery upgrade from 2.5 to 3.0.19 - tasks pending
I'm trying to upgrade our celery from 2.5 to 3.0.19 (using django-celery) but have this strange issue.
I updated the /etc/default files and used the new /etc/init.d/celeryd scripts, I see that the ...
2
votes
1answer
44 views
Celery how to stop tasks being processed on a developnent machine
I have my production and development machines setup using Celery in Django. Everything works. My issue is that when I boot up my development machine it starts to consume tasks and if I have a bug ...
0
votes
1answer
29 views
Celery create multiple tasks from the same function
I want to create multiple celery tasks from the same function, and they will differ in the parameters that I pass to the task decorator. Let's say I want to set different timeouts for paid and free ...
3
votes
1answer
130 views
Implement zeromq publisher in django with celery (Broker redis)
i need to implement zmq publisher in django and celery with redis as a broker. But my client doesn't receive anything.
tasks.py
from celery import task
import zmq
try:
context = ...
0
votes
0answers
31 views
Django get() calls in Celery tasks return 32 matches
I am observing a very weird bug with Celery. Some of the code in my tasks file make some get requests that I am certain should return 1 result, but they sometimes return 32 results. When this error ...
0
votes
2answers
368 views
Celery, Django, Heroku — ImportError: No module named tasks
I am trying to run celery with IronMQ and cache in a Django project on Heroku but I am receiving the following:
2013-04-14T22:29:17.479887+00:00 app[celeryd.1]: ImportError: No module named tasks
...
0
votes
1answer
267 views
Django Celery socket.error: [Errno 111] Connection refused
When running the command celery status on my production server I get this error:
But, Celery works and the worker do run, what is this error and why can I not run this command?
...
0
votes
1answer
81 views
How to auto start Django Celery with Apache?
I have setup Django and Celery in my production server following these instructions and it works.
I now need celery to start on boot etc. How can this be done?
I'm running Ubuntu and Apache, do I ...
-1
votes
1answer
53 views
Using django-celery,how do I get the worker to process tasks defined outside of tasks.py? [closed]
Is it even possible to define tasks outside tasks.py?
0
votes
1answer
31 views
Installing celery for django
I am a little confused on what i should install for celery to work with my django installation.I have celery and django installed.I want my service broker to be redis and this package is given
...
1
vote
1answer
29 views
Delayed subtask in django-celery
This is my code:
add.apply_async((1, 2), countdown=5, link=delete.subtask())
How can I add a custom delay on delete subtask passing the result of the add task as a parameter?
Is it possible with ...
0
votes
2answers
41 views
How to queue up scheduled actions
I am trying to set up some scheduled tasks for a Django app with celery, hosted on heroku. Aside from not know how everything should be configured, what is the best way to approach this?
Let's say ...
1
vote
1answer
53 views
What is the recommended way to handle bugs in Celery Task code?
I've been searching for a few days to find a de facto way of handling bugs in a celery task.
In the Celery docs, we do learn about retying tasks because of failure.
It’s important to note that ...
0
votes
0answers
20 views
javac is not running under a subprocess launched over http
I'm running a django web application witch launch a java compilation command and I need to catch the javac stderr, I've put it in a separate task (Celery), here is the code:
class JavaSubTask(Task):
...
1
vote
1answer
80 views
Django celery task: Newly created model DoesNotExist
Why is a model instance I've created, when queried from a celery task started directly afterwards, not found? For example:
# app.views
model = Model.objects.create() # I create my lovely model in ...
0
votes
1answer
31 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
73 views
celery celerybeat not ticking
I have the following setup:
celery-with-redis - 3.0 - active
celery - 3.0.12 - active
django-celery - 3.0.11 - active
django-kombu - 0.9.4 - active
kombu ...
0
votes
0answers
75 views
How can I minimise connections with django-celery when using CloudAMQP through dotcloud?
After spending a few weeks getting django-celery-rabbitmq working on dotcloud I have discovered that dotcloud is no longer supporting rabbitmq. Instead they recommend CloudAMQP. So I've set up ...
3
votes
0answers
60 views
Is it possible to deadlock a worker by accumulating scheduled tasks?
By code:
@celery.task()
def some_recursive_task():
# Do some stuff and schedule it to run again later
# Note that the next run is not scheduled in a fixed basis, like crontabs
# but based ...
0
votes
1answer
36 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
0answers
70 views
accessing celery task results in chain within a group
My workflow with celery is:
group1 = (task1, task2)
chain2 = (task3, group1)
group3 = (task4, task5, chain2)
When I start group3, everything goes fine: all the task are executed with the ...
1
vote
1answer
116 views
Celery tasks don't run in PyCharm debugger
I'm using PyCharm and have noticed when I attach a debugger to a celery worker process that my tasks do not complete and this error is logged to the console:
Traceback (most recent call last):
File ...
2
votes
2answers
85 views
Using django-nose and django-celery together — unit testing
I have a django project that used django-nose. I'd like to add django-celery to the project. I use unit tests. Both django-nose and django-celery need a TEST_RUNNER setting in my settings.py file. ...
4
votes
1answer
145 views
Django Celery in production
I have everything I want to do with django-celery working on my development machine locally. I run Django, djcelery, cellery and the broker (Amazon SQS). It sends tasks and just works.
I can set this ...
4
votes
1answer
141 views
running celeyd_multi with supervisor
I'm working with djcelery and supervisor.
I was running a celery with supervisor and everything worked fine, once I realized that I needed to change it to celery multi everything broke up.
If I run ...
1
vote
1answer
110 views
Django Celery Chord Not Executing
I have a program that generates a large list of products through Python's itertools; basically a big set of various combinations of words. There are multiple sets to run through the products() ...
0
votes
1answer
91 views
How to cleanup celery_taskmeta?
I've been reading django-celery to try to find a native way of cleaning up celery_taskmeta, so this table won't grow up too much when in production environment.
Can'f find nothing. Should i do a ...
0
votes
1answer
41 views
Huge delay when using Celery + Redis
I'm testing Django + Celery, hello world examples. With RabbitMQ celery works fine, but when I switched to Redis broker/result I get following:
%timeit add.delay(1,2).get()
1 loops, best of 3: 503 ms ...


