Django-celery provides Celery integration for Django.
0
votes
0answers
5 views
celery task with routing key on SQS
I have a django celery set up, and I'm switching over from rabbitmq to use SQS as the broker. I'm finding that my tasks decorated with a routing_key value are not producing messages in the broker?
...
0
votes
0answers
9 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
40 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
0answers
8 views
Perform a model query on a function external to a task
I'm using django-1.5.1, celery-3.0.15 and django-celery-3.0.11-3 on an Arch Linux machine.
In my django app, I would like to maintain 2 separate files tasks.py and utils.py.
In the following ...
0
votes
1answer
35 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
41 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
26 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
14 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
40 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
36 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 ...
0
votes
0answers
28 views
Celery not connecting to Redis broker: Connection to broker lost
I'm trying to get Redis to work as a broker for my Celery 3.0.19 install on Django. I see that redis-server is running on port 6379. When I run a simple Celery test, I get the following stack trace:
...
0
votes
0answers
27 views
manage.py celeryd -B. How to run it in background?
I use django celery
python manage.py celeryd -B
[2013-05-01 23:42:58,583: WARNING/MainProcess] celery@aaa ready.
How to run it in background?
0
votes
1answer
30 views
Celery. Why my task work ONLY if I run this manualy in shell(manage.py shell)?
>>> from app.tasks import SendSomething
>>> eager_result = SendSomething().apply()
Why my task work ONLY if I run this manualy in shell(manage.py shell)?
settings.py
from ...
1
vote
0answers
19 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 ...
0
votes
1answer
34 views
Anyone else sending email from a Django app with a celery task, using Amazon-SES, hosted on Heroku?
I know this works, because I have django-registrations app sending activation emails. But I'm having no luck re-creating this functionality for another app. In views.py, in the add_article function, ...
2
votes
1answer
37 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
21 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 ...
1
vote
1answer
36 views
Celery Task the difference between these two tasks below
What's the difference between these two tasks below?
The first one gives an error, the second one runs just fine. Both are the same, they accept extra arguments and they are both called in the same ...
3
votes
0answers
93 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
27 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
1answer
112 views
Can't pickle : attribute lookup builtin.function failed
I'm getting the error below, the error only happens when I add delay to process_upload function, otherwise it works without a problem.
Could someone explain what this error is, why its happening and ...
0
votes
2answers
176 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
148 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
50 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 ...
0
votes
1answer
17 views
Django - Use of inspectdb for user's uploaded table
My web application allow users to load/create tables in the Postgres database. I know Django ORM needs a model definition in models.py for each table in the database to access it.
I wonder if I ...
-1
votes
1answer
41 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
28 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
...
0
votes
0answers
38 views
Django Celery auto start up options
I have set celery up on my production ubuntu server my script runs and it all works fine using ....
sudo sh -x /etc/init.d/celeryd
My issue is now I have to run this every time, right?
I was told ...
1
vote
1answer
24 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 ...
1
vote
1answer
22 views
Location of celeryd folder on Ubuntu?
I'm following instructions to setup djcelery in production.
Download the daemon script :
https://github.com/ask/celery/blob/master/contrib/generic-init.d/celeryd
Put it in ...
0
votes
2answers
39 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
50 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
17 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
65 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
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
60 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
58 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
51 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
0answers
65 views
Django Celery Beat - How to pass arguments using the DatabaseScheduler
I'm using the "DatabaseScheduler" with the Django Celery Beat, but I can't pass arguments to the function.
The settings:
# Django celery
import djcelery
djcelery.setup_loader()
BROKER_URL = ...
3
votes
0answers
152 views
Heroku celery background task
We have a simple task running with django-celery on Heroku. Something like:
@task
Simple_task():
for line in csv.reader(origin):
process_line(line)
process_line(line):
fields = ...
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
0answers
59 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
84 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
63 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. ...
1
vote
0answers
154 views
Cannot queue tasks using Django 1.5, django-celery 3.0.11 and mongodb
everyone. I have problem using Django==1.5 with django-celery==3.0.11
I get error: [Errno 61] Connection refused when I run following code from django shell
from data_warehouse.tasks import add
...
4
votes
1answer
127 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
74 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 ...
2
votes
1answer
101 views
Django Celery reduce time, 5 hours to complete 1000 tasks
I'm running on a development environment so this maybe different in production, but when I run a task from Django Celery, it seems to only fetch tasks from the broker every 10-20 seconds. I'm only ...
1
vote
1answer
87 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
64 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 ...



