Tagged Questions

Celery is a distributed task queue framework for Python, used for asynchronous and parallel execution.

learn more… | top users | synonyms

18
votes
4answers
482 views

How to Guarantee Message delivery with Celery?

I have a python application where I want to start doing more work in the background so that it will scale better as it gets busier. In the past I have used Celery for doing normal background tasks, ...
12
votes
1answer
414 views

Twisted or Celery? Which is right for my application with lots of SOAP calls?

I'm writing a Python application that needs both concurrency and asynchronicity. I've had a few recommendations each for Twisted and Celery, but I'm having trouble determining which is the better ...
11
votes
3answers
4k views

Rabbitmq or Gearman - choosing a jobs queue

At work, we need to build a jobs server for things like sending emails, building PDFs, crunching some data, etc. Obviously, we'd like to build on some sort of generic queueing system. I'm familiar ...
10
votes
8answers
472 views

Lightweight notification technique

I need to develop a realtime recent activity feed in django (with AJAX long-polling), and I'm wondering what's the best strategy for the server-side. Pseudocode: def recent_activity_post_save(): ...
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 ...
10
votes
2answers
974 views

Developing with Django+Celery without running `celeryd`?

In development, it's a bit of a hassle to run the celeryd as well as the Django development server. Is it possible to, for example, ask celery to run tasks synchronously during development? Or ...
9
votes
2answers
1k views

Celery - Get task id for current task

How can I get the task_id value for a task from within the task? Here's my code: from celery.decorators import task from django.core.cache import cache @task def do_job(path): "Performs an ...
9
votes
2answers
534 views

How to layout a queue/worker structure to support large tasks for multiple environments?

For a Python/Django/Celery based deployment tool, we have the following setup: We currently use the default Celery setup. (One queue+exchange called "celery".) Each Task on the queue represents a ...
8
votes
2answers
590 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 ...
8
votes
2answers
954 views

Unit testing with django-celery?

I am trying to come up with a testing methodology for our django-celery project. I have read the notes in the documentation, but it didn't give me a good idea of what to actually do. I am not ...
8
votes
2answers
1k views

Python+Celery: Chaining jobs?

The Celery documentation suggests that it's a bad idea to have tasks wait on the results of other tasks… But the suggested solution (see “good” heading) leaves a something to be desired. Specifically, ...
7
votes
1answer
299 views

Django Celery : use python standard logging in celery

I need help asap. My company just asked me to implement celery in the system that I am in charge of right now, and in the previous version of the system, it already used python standard logging. My ...
7
votes
1answer
724 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. ...
7
votes
3answers
253 views

Does this web app require a task queue?

Background I have a web app that will create an image from user input. The image creation could take up to a couple seconds. Problem If I let the server thread, that is handling the ...
6
votes
0answers
46 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 ...
6
votes
1answer
256 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
2answers
281 views

Book for Django + Celery + RabbitMQ?

OK, I have been reading about the celery and rabbitmq, while I appreciate the effort of the project and the documentation, I am still confused about a lot of things. http://www.celeryproject.org/ ...
6
votes
3answers
189 views

'Queueing' tutorials and documentation?

I'm looking for articles and references that give an overview of 'queueing' (I'm probably not even using the right term here). I'm hoping for an introductory styled guide through a world of Redis, ...
6
votes
1answer
442 views

Celery task that runs more tasks

I am using celerybeat to kick off a primary task that kicks of a number of secondary tasks. I have both tasks written already. Is there a way to easily do this? Does Celery allow for tasks to be run ...
6
votes
3answers
2k views

Why does Celery work in Python shell, but not in my Django views? (import problem)

I installed Celery (latest stable version.) I have a directory called /home/myuser/fable/jobs. Inside this directory, I have a file called tasks.py: from celery.decorators import task from ...
6
votes
3answers
684 views

Globally accessible object across all Celery workers / memory cache in Django

I have pretty standard Django+Rabbitmq+Celery setup with 1 Celery task and 5 workers. Task uploads the same (I simplify a bit) big file (~100MB) asynchronously to a number of remote PCs. All is ...
5
votes
1answer
216 views

Pros and cons of celery vs disco vs hadoop vs other distributed computing packages

I'm working on a web application (built in django) intended for medium-to-large-scale data analysis. I'm imagining using a task queue feeding to a bank of servers, or maybe on-demand EC2 instances to ...
5
votes
1answer
115 views

reliable way to deploy new code into a production celery cluster without pausing service

I have a few celery nodes running in production with rabbitmq and I have been handling deploys with service interruption. I have to take down the whole site in order to deploy new code out to celery. ...
5
votes
2answers
267 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
859 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
1answer
341 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 ...
5
votes
4answers
1k views

Using MongoDB as message queue for Celery

I'm trying to use MongoDB as the message queue for Celery (in a Django app). The current development version of Celery (2.2.0rc2) is supposed to let you do this, but I can't seem to get any workers to ...
5
votes
1answer
585 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
1answer
1k views

Test if a celery task is still being processed

How can I test if a task (task_id) is still processed in celery? I have the following scenario: Start a task in a Django view Store the BaseAsyncResult in the session Shutdown the celery daemon ...
5
votes
3answers
312 views

How can I capture all of the python log records generated during the execution of a series of Celery tasks?

I want to convert my homegrown task queue system into a Celery-based task queue, but one feature I currently have is causing me some distress. Right now, my task queue operates very coarsely; I run ...
5
votes
2answers
1k views

celery-django can't find settings

I have a Django project that uses Celery for running asynchronous tasks. I'm doing my development on a Windows XP machine. Starting my Django server (python manage.py runserver 80) works fine, but ...
5
votes
1answer
638 views

Asynchronous message queues and processing like Amazon Simple Queue service in django

There are many activities on an application that need things like: Send email, Post to twitter thumbnail an image, into several sizes call a cron to find connected relationships A good way to do ...
4
votes
1answer
271 views

Using Celery with SQLAlchemy and Pyramid

I'm creating the web app using Pyramid-1.2.1 with SQLAlchemy as database backend. Now I need to do some periodic tasks along with this app and I want to use Celery as a task processor and SQLAlchemy ...
4
votes
3answers
178 views

django/celery: Best practices to run tasks on 150k Django objects?

I have to run tasks on approximately 150k Django objects. What is the best way to do this? I am using the Django ORM as the Broker. The database backend is MySQL and chokes and dies during the ...
4
votes
1answer
234 views

django/innodb — problem with old sessions and transactions

We just switched our MySQL database from MyIsam to Innodb, and we are seeing an odd issue arise in Django. Whenever we make a database transaction, the existing sessions do not pick it up...ever. We ...
4
votes
1answer
437 views

thread safety in django with asynchronous tasks and redis

I have a django application that calls an asynchronous task on a queryset (using celery). The task takes the queryset and performs a whole bunch of operations that could potentially take a very long ...
4
votes
2answers
1k views

Django Asynchronous Processing

I have a bunch of Django requests which executes some mathematical computations ( written in C and executed via a Cython module ) which may take an indeterminate amount ( on the order of 1 second ) of ...
4
votes
2answers
480 views

Celery doesn't return results

For some reason, whenever I create and run a new Task in Celery there is a problem with returning the results. The first task returns perfectly, but for all subsequent tasks, the result is always ...
4
votes
1answer
829 views

django-celery without an ampq server (rabbitmq)

I am using celery for distributed task processing. I wanted to deploy my work on a web-host, just to show the working of my project. So how can i get djcelery to use a database (sqlalchemy) as backend ...
4
votes
1answer
304 views

How do I choose a task_id using celery?

For now I get a task_id from the async_result and have to save it the get it back later. Would be better if I knew what the task_id what made of so I can calculate it back instead of pulling from the ...
4
votes
1answer
196 views

Is this __import__ functionality correct?

I have a package named jiva_tasks, which I'm trying to import via celery (using the CELERY_IMPORTS attribute of celeryconfig. The import statement that celery is using is this: __import__(module, ...
4
votes
1answer
780 views

How can I set up Celery to call a custom initialization function before running my tasks?

I have a Django project and I'm trying to use Celery to submit tasks for background processing ( http://ask.github.com/celery/introduction.html ). Celery integrates well with Django and I've been able ...
3
votes
2answers
44 views

Cancel an already executing task with Celery?

I am new to Django and Celery. I have been reading the doc and searching but cannot seem to find a straight answer: Can you cancel an already executing task? (as in the task has started, takes a ...
3
votes
2answers
73 views

Shared XMPP connection between Celery workers

My web app needs to be able to send XMPP messages (Facebook Chat), and I thought Celery might be a good solution for this. A task would consist of querying the database and sending the XMPP message to ...
3
votes
1answer
113 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
2answers
36 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
1answer
143 views

Using Celery as a control channel for Twisted applications

I am trying to use Celery as the control channel for a Twisted application. My Twisted application is an abstraction layer that provides a standard interface to various locally running processes (via ...
3
votes
3answers
279 views

Celery with Amazon SQS

I want to use Amazon SQS as broker backed of Celery. There’s the SQS transport implementation for Kombu, which Celery depends on. However there is not enough documentation for using it, so I cannot ...
3
votes
1answer
176 views

Celery periodic_task running multiple times in parallel

I have some very simple periodic code using Celery's threading; it simply prints "Pre" and "Post" and sleep in between. It is adapted from this StackOverflow question and this linked website from ...
3
votes
3answers
299 views

Can't compile Erlang R14B03 when trying install RabbitMQ using Homebrew on Mac OS X

I am developing a django app and it will utilize the Celery notification system. To use Celery I need the install the RabbitMQ server. I am trying to install it using homebrew. So I just: sudo brew ...

1 2 3 4 5 7