Django-celery provides Celery integration for Django.
21
votes
0answers
176 views
Why doesn't CeleryCAM work with Amazon SQS?
I'm using Celery 2.4.6 and django-celery 2.4.2.
When I configure Celery to use Amazon SQS per the resolution on this question: Celery with Amazon SQS
I don't see anything in the celerycam table in ...
10
votes
2answers
1k views
Django Celery: Admin interface showing zero tasks/workers
I've setup Celery with Django ORM as back-end. Trying to monitor what's going on behind the scene.
I've started celeryd with -E flag
python manage.py celeryd -E -l INFO -v 1 -f /path/to/celeryd.log
...
8
votes
2answers
656 views
How to tell if a task has already been queued in django-celery?
Here's my setup:
django 1.3
celery 2.2.6
django-celery 2.2.4
djkombu 0.9.2
In my settings.py file I have
BROKER_BACKEND = "djkombu.transport.DatabaseTransport"
i.e. I'm just using the database ...
7
votes
1answer
795 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
359 views
Examples of Django and Celery: Periodic Tasks
I have been fighting the Django/Celery documentation for a while now and need some help.
I would like to be able to run Periodic Tasks using django-celery. I have seen around the internet (and the ...
6
votes
1answer
924 views
What are the django-celery (djcelery) tables for?
When I run syncdb, I notice a lot of tables created like:
djcelery_crontabschedule
...
djcelery_taskstate
django-kombu is providing the transport, so it can't be related to the actual queue. Even ...
5
votes
2answers
311 views
Django - Celery: @transaction and @task don't stack
I want to run a Django - Celery task with manual transaction management, but it seems that the annotations do not stack.
e.g.
def ping():
print 'ping'
pong.delay('arg')
...
5
votes
1answer
363 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 ...
3
votes
1answer
135 views
Detect whether Celery is Available/Running
I'm using Celery to manage asynchronous tasks. Occasionally, however, the celery process goes down which causes none of the tasks to get executed. I would like to be able to check the status of celery ...
3
votes
1answer
126 views
Schedule tasks using django-celery based on user input
I am building a reporting portal using django. In this portal I need to give users the ability to schedule reports to run on a reoccurring basis. I have been researching django-celery and understand ...
3
votes
2answers
39 views
How do I turn off highlighting in celery?
I'm using the celery managment command to do some debugging in a django application:
python manage.py celeryd -l info
The output is highilighted in really glaring colors. Is there any way to turn ...
3
votes
3answers
341 views
django celery: how to set task to run at specific interval programmatically
I found that I can set the task to run at specific interval at specific times from here, but that was only done during task declaration. How do I set a task to run periodically dynamically?
3
votes
1answer
159 views
Django-Celery - Resubmit tasks from admin page?
I'm currently working on a project using Django 1.3 with the Django-Celery app. It's pretty awesome, by the way, I suggest anyone who's not familiar with celery check it out.
I have a specific ...
3
votes
3answers
367 views
Does django's runserver option provide a hook for running other restart scripts?
I've recently been playing around with django and celery. One annoying thing during development is the fact that I have to restart the celery daemon each time I modify a task. When I'm developing, I ...
2
votes
2answers
96 views
How to check task status in Celery?
How does one check whether a task is running in celery (specifically, I'm using celery-django)?
I've read the documentation, and I've googled, but I can't see a call like:
my_example_task.state() == ...
2
votes
2answers
164 views
Why does RabbitMQ keep breaking from a corrupt persister log file?
I'm running Celery in a Django app with RabbitMQ as the message broker. However, RabbitMQ keeps breaking down like so. First is the error I get from Django. The trace is mostly unimportant, because I ...
2
votes
1answer
71 views
What is causing this djcelery error: NotRegistered?
Running this script in a django shell:
import processors.topics.tasks as t
t.test.delay()
Gives this error:
NotRegistered: 'processors.topics.tasks.test'
The weird thing is that ...
2
votes
2answers
90 views
Celery throwing IOError when retrying a task
I'm intermittently (about 20% of the time) getting an IOError exception from Celery when I attempt to retry a failed task.
Here is my task:
@task
def update_data(pk_id):
try:
pk = ...
2
votes
2answers
139 views
Implementing “idle” and “normal” priority queues for long-running tasks in Celery
I'm attempting to implement a following scenario with Celery: two queues of (same) long-running tasks, one for "normal" and the other for "idle" priority.
I'd make the workers monitor both queues and ...
2
votes
4answers
367 views
Why are celery_taskmeta and other tables not being created when running a syncdb in django?
I'm trying to setup celery and django, but the celery_taskmeta table is not being created.
I've followed numerous (Recent) tutorials, added djcelery and djkombu to my installed_apps. added the ...
2
votes
1answer
284 views
Celery monitoring not working with database broker
I'm using django-celery using the database as both broker and results store. The events are getting processed, but the monitoring (celerycam or celeryev) is not working.
My settings.py includes
...
2
votes
1answer
102 views
How to change the permission of celeryd in django
I have seen that when i execute celeryd via normal user then i get permission denied error
/opt/python2.7/bin/celeryd
But it executes with root user
In the text it says that
"Running celeryd with ...
2
votes
1answer
720 views
Issues with celery daemon
We're having issues with our celery daemon being very flaky. We use a fabric deployment script to restart the daemon whenever we push changes, but for some reason this is causing massive issues.
...
2
votes
1answer
257 views
Detecting when a celery task and all subtasks have completed
I have a parent task that will spawn an arbitrary and potentially largish number of subtasks. Once both the parent and all of the subtasks have completed I need to set a flag in my database to ...
2
votes
1answer
491 views
How to diagnose Celery workers that hang
I am getting started with Celery for a Django project. For local development purposes I've set it up with djcelery and djkombu (database transport), according to these instructiuons ...
2
votes
1answer
377 views
Lots of socket errors with celery eventlet tasks
I'm getting a lot of "IOError: Socket closed" exceptions from amqplib.client_0_8.method_framing.read_method when running my celery workers with the --pool=eventlet option. I'm also seeing a lot of ...
2
votes
1answer
430 views
Django Celery and multiple databases (Celery, Django and RabbitMQ)
Is it possible to set a different database to be used with Django Celery?
I have a project with multiple databases in configuration and don't want Django Celery to use the default one.
I will be ...
2
votes
1answer
619 views
Django Celery: manage.py celeryd returns “Unknown Command”
I'm trying to setup Celery with Django ORM as backend.
I've installed all required packages(django-celery, djkombu), done everything specified by the docs, ran syncdb to generate necessary DB tables.
...
1
vote
1answer
61 views
Running celery in django not as an external process?
I want to give celery a try. I'm interested in a simple way to schedule crontab-like tasks, similar to Spring's quartz.
I see from celery's documentation that it requires running celeryd as a daemon ...
1
vote
2answers
87 views
Problems with Celery & Redis Backend
I have a system set up currently that is using celery with a redis
backend to do a bunch of asynchronous tasks such as sending emails,
pulling social data, crawling,etc. Everything is working great, ...
1
vote
2answers
62 views
a little confusion over celery terminology
hi I am a little confused over celeryd and celeryd_multi - what is the difference between this two? I mean, so far I have been using python manage.py celeryd, but i came across celeryd_multi today and ...
1
vote
1answer
110 views
Is it safe to use Celery with django-kombu in production?
Is it safe to use Celery with django-kombu in production? I have this setup on Heroku, so my app's database (postgres) is the message transport. I'm seeing intermittent problems e.g. a task is ...
1
vote
1answer
89 views
Background processing in Django without Celery
I have a very small part of a Django site that keeps the state of a moderated chat session between two users. Basically, the first user speaks for 3 minutes (and no one else can), then the second user ...
1
vote
1answer
107 views
How to schedule a periodic Celery task per Django model instance?
I have a bunch of Feed objects in my database, and I'm trying to get each Feed to be updated every hour. My issue here is that I need to make sure there aren't any duplicate updates -- it needs to ...
1
vote
2answers
98 views
Heroku Django Celery: NameError: name 'DATABASES' is not defined
I am following along this tutorial to get celery and django running on heroku.
However, I get this error in my logs when I put in the specified code for the worker:
2011-12-22T05:31:56+00:00 ...
1
vote
0answers
71 views
django-celery crontab schedule for day of month and month
django-celery's crontab class only supports minute, hour and day of week. Is there a way to support the rest of the normal cron schedule options such as month and day of the month? Or will I need to ...
1
vote
1answer
108 views
Creating djcelery tables with the presence of South
According to django-celery's documentation, if I have South I should call
python manage.py migrate djcelery
However, all it does is creating some migration file:
Running migrations for djcelery:
...
1
vote
2answers
67 views
django-celery warnings about settings.DEBUG
I have some questions regarding running djcelery.
When I run
python manage.py celeryd --setting=settings
The workers seem to have started but the warnings concern me:
...
1
vote
2answers
78 views
How te reschedule a task if it hasn't been running for more than 10 minutes?
I have task:recursive_task which will schedule the same task to be executed 5 seconds later, but if for some reason this task crashes it needs to be rerun again.
I catched nearly every scenario but ...
1
vote
2answers
319 views
Parallel processing within a queue (using Pool within Celery)
I'm using Celery to queue jobs from a CGI application I made. The way I've set it up, Celery makes each job run one- or two-at-a-time by setting CELERYD_CONCURRENCY = 1 or = 2 (so they don't crowd the ...
1
vote
2answers
152 views
newbie question to RabbitMQ and Celery
I started playing around with Celery and RabbitMQ this morning and defined some basic tasks to see how the performance will improve on my server.
I have added my rabbitmq user, vhosts and set my ...
1
vote
1answer
484 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 ...
1
vote
1answer
94 views
Can I restart a FAILED celery task?
I am using celery with the djkombu queue.
I've set max_retries=3 for my task. Once the 3rd retry fails, it executes the after_return method with status=FAILURE. The method also receives a task_id ...
1
vote
1answer
138 views
Where is the data provided by django-celery urls stored? How long is the data available? And what is the memory consumption?
I am starting a project using django celery and I am making ajax calls to the task urls provided by 'djcelery.urls'.
I would like to know a few things about this data:
Where is that information ...
1
vote
1answer
204 views
How can I use Ajax to check the status and result of a django-celery task?
The Django Celery documentation suggests there are URLs I can check to get the status of a task: http://packages.python.org/django-celery/reference/djcelery.urls.html
What are these URLs?
1
vote
1answer
317 views
Celery task seems to do everything except write to the database
I am using Django with MongoEngine, django-celery and the MongoDB backend for celery. I am queuing one task. The task involves fetching a file from GridFS (through the MongoEngine FileField), ...
1
vote
1answer
198 views
Using Django's ORM in a Celery Task
How can a Celery task have access to the Django database-abstraction API? Does this need to be coded from scratch using one of the strategies for stand-alone Django ORM usage, or is there a more ...
1
vote
1answer
101 views
DO i need to execute separate celeryd if i run multiple sites in Django
Currently i have one site on Django. But i am planning to run more Django sites.
So i want to know that do i need to run celeryd for every new site or one is enough.
I am running `celeryd daemon via ...
1
vote
2answers
218 views
How to start celery in background of terminal in Django
I ma starting celery as
python manage.py celeryd
It is working but in foreground . Then to test commands i need to start another terminal and do stuff there.
is there any way to start that in ...
1
vote
2answers
251 views
Recover from task failed beyond max_retries
I am attempting to asynchronously consume a web service because it takes up to 45 seconds to return. Unfortunately, this web service is also somewhat unreliable and can throw errors. I have set up ...