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

learn more… | top users | synonyms

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 ...
3
votes
0answers
26 views

Using Temporary files in Django Celery Results

I'm using a celery task to generate PDF and Excel exports for user data. These tasks build the temporary files. Here's the problem. I'm using NamedTemporaryFile objects, which automatically delete ...
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 ...
3
votes
0answers
157 views

How to override send_task BaseTask class?

I did some kind of mini framework to be able to catch connection errors with celery in case rabbitmq shutsdown which handles errors in a more graceful way and it works pretty well except when using ...
3
votes
0answers
243 views

Celery creates multiple queues on RabbitMQ — Non-default queues have no consumers

I am using Django Celery with a RabbitMQ backend, all hosted on Heroku. From the Celery docs, it is clear that Celery is designed to create new queues for tasks. My problem is, when I go into my ...
3
votes
0answers
329 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) ...
3
votes
0answers
354 views

Topic Exchange with Celery and RabbitMQ

I'm a bit confused on what my configuration should look like to set up a topic exchange. http://www.rabbitmq.com/tutorials/tutorial-five-python.html This is what I'd like to accomplish: Task1 -> ...
3
votes
0answers
142 views

Recovering Celery From a Database Outage

I have Celeryd/RabbitMQ running on a Fedora box, communicating with a MySQL database on a separate box. I've noticed that, on rare occasions, if there's even the slightest problem connecting to the ...
2
votes
0answers
61 views

SQLAlchemy session issues with celery

I have scheduled a few recurring tasks with celery beat for our web app The app itself is build using pyramid web framework. Using the zopetransaction extension to manage session In celery, I am ...
2
votes
0answers
27 views

Unable to send log messages form celery task to Sentry

I'm having an issue logging to Sentry from within a celery task. Errors in tasks work fine. However, when I try to manually log an event, it gets logged to the celery logs, but not to the sentry ...
2
votes
0answers
70 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 ...
2
votes
0answers
31 views

Fabric sudo silently failing

I'm using Fabric 1.6.0 on OS X 10.8.2, running commands on a remote host on Ubuntu Lucid 10.04. On the server, I can run sudo /etc/init.d/celeryd restart to restart the Celery service. I pass the ...
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
0answers
63 views

How to ACK celery tasks with parallel code in reactor?

I have a celery task that, when called, simply ignites the execution of some parallel code inside a twisted reactor. Here's some sample (not runnable) code to illustrate: def run_task_in_reactor(): ...
2
votes
0answers
104 views

django-celery consumer can not receive tasks

Installation I am using django(1.4) celery(3.0.13) with RabbitMQ(v3.0.4), the backend db is sqlite. Celery was installed by pip install django-celery Setting In setting.py: # For django-celery ...
2
votes
0answers
99 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 ...
2
votes
0answers
135 views

Message queues- how do I know who I am?

I have a Flask application that uses Nose to discover and run a series of tests in a particular directory. The tests take a long time to run, so I want to report the progress to the user as things ...
2
votes
0answers
115 views

Django Celery Workflow Chain Pause/Resume

Is there any way to pause/resume a running workflow created using chains from celery 3.0? Basically, we have two different types of tasks in our system: interactive and non-interactive ones. The ...
2
votes
0answers
553 views

“ImportError: No module named exceptions” when running Celery

I'm attempting to run a Django app that uses Celery and I'm receiving the following error: import djcelery File "/Library/Python/2.7/site-packages/djcelery/__init__.py", line 25, in ...
2
votes
0answers
287 views

Attribute Error when trying to run celeryd_multi

I am getting a AttributeError: 'module' object has no attribute 'getrlimit' when trying to start celeryd_multi, either manually (python manage.py celeryd_multi...) or as a daemon through init.d . I ...
2
votes
0answers
350 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 ...
2
votes
0answers
124 views

Celery: poll application state synchronously

I wan't to retrieve my applications state, but currently I only have found out how to do this asynchronously using events. >>> state = app.events.State() >>> def on_event(event): ...
2
votes
0answers
94 views

CELERY_ROUTES seems to be ignored

I'm using django and djcelery. Since some tasks are a bit heavy I want them in a separate queue. According to the part about automatic routing in the user guide, you can achieve this through the ...
2
votes
0answers
131 views

celery worker does not retry task after calling retry()

I have a task: @celery.task(name='request_task',default_retry_delay=2,acks_late=True) def request_task(data): try: if some_condition: request_task.retry() ...
2
votes
0answers
677 views

Celerybeat doesn't work as expected

I'm building some project with bottle and I need it to run certain scheduled actions periodically. I decided to go with rabbitmq + celery since that seemed like the most robust & complete ...
2
votes
0answers
293 views

Can celery gracefully endure a mongodb failover when using it as a broker?

I'm using a mongodb replica set both as a broker and result storage for celery. I have successfully got it running against the replica set, but when I take down the primary mongodb node, and the ...
2
votes
0answers
50 views

Celery truncates log messages

My Celery log consistently truncates (not very) long error messages, like this: [2012-04-08 04:53:10,084: INFO/MainProcess] Task mainapp.tasks.async_submitter[2df2fe93-156b-4944-9ecf-c55ba53e8aaa] ...
2
votes
0answers
222 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 ...
2
votes
0answers
96 views

Performing a big task and relaying results to client AND cache. Should I use Celery?

I'm developing an application with Django. Part of my application that I am designing is supposed to take a keyword, pull a bunch of data using various APIs and scrapers, and then display and then ...
2
votes
0answers
155 views

Celery + RabbitMQ, some AMQP temporay queues not expiring

I have a celery + rabbitmq setup with a busy django site, in the celery setting I have this config: CELERY_RESULT_BACKEND = "amqp" CELERY_AMQP_TASK_RESULT_EXPIRES = 5 I am monitoring the queues ...
1
vote
0answers
11 views

Running a Celery worker in unittest

I have the following setup: Django-Celery project A registers task foo Project B: Uses Celery's send_task to call foo Project A and project B have the same configuration: SQS, msgpack for ...
1
vote
0answers
28 views

Celeryd launching too many processes

How do you ensure celeryd only runs as a single process? When I run manage.py celeryd --concurrency=1 and then ps aux | grep celery I see 3 instances running: www-data 8609 0.0 0.0 20744 1572 ? ...
1
vote
0answers
18 views

Celery task function custom attributes

I have a celery task function that looks like this- @task(base=MyBaseTask) @my_custom_decorator def my_task(*args, **kwargs): my_task.ltc.some_func() #fails - attribute ltc doesn't exist on the ...
1
vote
0answers
12 views

Celery task timeout/time limit for windows?

I have a web app written in Flask that is currently running on IIS on Windows (don't ask...). I'm using Celery to handle some asynchronous processing (accessing a slow database and generating a ...
1
vote
0answers
39 views

Can't get “retry” to work in Celery

Given a file myapp.py from celery import Celery celery = Celery("myapp") celery.config_from_object("celeryconfig") @celery.task(default_retry_delay=5 * 60, max_retries=12) def add(a, b): with ...
1
vote
0answers
70 views

Python workflow engine for multiple MapReduce steps

Fabulous people at SO, I need to process a (bulky) set of data thru various steps; each step can involve mapReduce (using Disco), general distributed processing (using Celery) or some simple ...
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 ...
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 ...
1
vote
0answers
23 views

what might delay my celery tasks?

lo guys, i have a lil problem and maybe someone could help me to figure out what exactly is happening here: i have thousands of the same tasks which should execute in milliseconds and right after ...
1
vote
0answers
36 views

Dynamic (i.e. Runtime Configurable) Log Configuration for Django + Celery based application

We have a need to customize the log levels on the server at runtime. We are building a SAAS application using Django, and we have to be able to enable logging per tenant eventually. I am trying to ...
1
vote
0answers
50 views

Call Celery task ( with Redis ) using PHP

I want to use Celery and Redis to build a task queue. ( http://www.celeryproject.org/ ). And my tasks.py is following: from celery import Celery celery.conf.update( CELERY_ACCEPT_CONTENT = ...
1
vote
0answers
56 views

What's the best way to implement parallel tasks with Django and Elastic beanstalk?

I have been trying to implement celery with django and elastic beanstalk with SQS, but I still don't know how should I start the workers in background, it seems that I need to create an AMI outside of ...
1
vote
0answers
35 views

What argument do I pass to the get_task_logger() function of celery?

The celery 3.x docs on logging recommend to set up the task logger like so: from celery.utils.log import get_task_logger logger = get_task_logger(__name__) When I do that, CELERYD_TASK_LOG_FORMAT ...
1
vote
0answers
44 views

dnspython and 'Lookup timed out'

I'm using Django, Celery, Eventlet and dnspython to asynchronous parse about 500 rss feeds. Using dnspython causes 'lookup timed out' error when I try to parse more than 20 feeds at the same time. ...
1
vote
0answers
19 views

How to log to file per task if execution is within a Celery task context

I want to modify my current logging setup without having to pass logger objects into functions as a parameter. Currently at the top of each module I define a LOG object LOG = ...
1
vote
0answers
40 views

Asynchronous celery task is blocking main application (maybe)

I have a django application running behind varnish and nginx. There is a periodic task running every two minutes, accessing a locally running jsonrpc daemon and updating a django model with the ...
1
vote
0answers
58 views

Celerybeat occasionally missing tasks

We have a setup of Celery (+Celerybeat) with a RabbitMQ backend running scheduled and unscheduled tasks. I've noticed that I occasionally miss/drop an occurrence of a scheduled task. Everything ...
1
vote
0answers
122 views

Waiting for a celery task to complete before responding with a django view

I am trying to use celery to improve browser response time where I can. I am dealing with this workflow issue. User goes to first page, enters data. View launches a celery task, then response with a ...
1
vote
0answers
37 views

celery task not acnowledged after warm shutdown of worker

I'm new to djcelery development. I want to shutdown a worker from a button on the web interface. So I'm calling the following task when the button is clicked in tasks.py: result = ...
1
vote
0answers
56 views

NotRegistered with djcelery + Heroku

I've been stuck on this one for the last 6 hours or so. So any help would be greatly appreciated. I am using djcelery on a Django app which is deployed on Heroku. Said app has a periodic task that ...

1 2 3 4 5 8