Celery is a distributed task queue framework for Python, used for asynchronous and parallel execution.
3
votes
0answers
96 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 = ...
3
votes
0answers
52 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
153 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
232 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
305 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
339 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
137 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
7 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
41 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
20 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
57 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
80 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
125 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
101 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
508 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
284 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
123 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
90 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
281 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
48 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
218 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
95 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
154 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
20 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
15 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
40 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
20 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
21 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 ...
1
vote
0answers
23 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
28 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
45 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
25 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
67 views
How many CPU cores has a heroku dyno?
I'm using Django with Celery 3.0.17 and now trying to figure out how many celery workers are run by default.
From this link I understand that (not having modified this config) the number of workers ...
1
vote
0answers
39 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
34 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
50 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
79 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 ...
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
54 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
vote
0answers
208 views
Celery Flower — Adding a Remote Task Worker doesnt display in flower
I've got Celery flower + rabbitmq setup running on my local box with the UI on localhost:5555 displaying an empty list of workers. Now, on a remote machine I have a celery flower connected to the same ...
1
vote
0answers
43 views
Celery : specify chain in chord header
How to specify chain in chord header? Chain object has no method s/subtask.
chains = []
for format in allowed_formats.keys():
chains.append(
chain(
...
1
vote
0answers
48 views
Celery task failure when pass a django SimpleLazyObject to the queue
I'm running the stack of Django 1.4.1 + RabbitMQ 3(broker) + Celery3.0.12 for a web app and task processing. Two servers, one for web and one just for task.
There is a problem when I pass a user ...
1
vote
0answers
56 views
Purpose of asynchronous task queue
i'm new to web development, so bear with. I just came across Celery, an asynchronous task queue. After reading the documentation, what i get that celery is adding a delay to a code and then run its ...
1
vote
0answers
100 views
catching celery connection errors
I have a problem with celery and redis as broker. After some time my celery workers stop working and give me messages "Consumer: connection refused too many open files. Trying again in 32 seconds". I ...
1
vote
0answers
161 views
how to break circular import in python
I have a circular import problem in my python code. The decorator from one module need to call a function in another module. And this function is using the decorator which is imported from previous ...
1
vote
0answers
99 views
Celery task chain cancelling?
I found that celery supports task chains: http://celery.readthedocs.org/en/latest/userguide/canvas.html#chains.
Question is: how can I stop chain's execution in a task?
For example, we got a chain ...
1
vote
0answers
60 views
Making Python Logging work async with Celery
I have logging setup. In particular, I have SMTPHandler. I would like to have it happen async. I'd like to use celery to make that happen. Is that possible?
import logging
logger = ...
1
vote
0answers
122 views
Django Celery Error When Starting CeleryBeat - Cannot Add Item To Database
I've set up a Django project through Apache using mod_wsgi, and I'm now trying to add django-celery to the mix to run periodic and scheduled tasks. I'm running into occasional error messages, though, ...
1
vote
0answers
310 views
how to tune celery settings so Redis dosent use as much memory? CELERY_TASK_RESULT_EXPIRES?
kinda a Celery noob here but, I think I have a configuration issue where Celery is putting too much stuff in Redis
my goal is to attempt to reduce or optimize the amount of memory Redis is using, if ...
1
vote
0answers
193 views
RabbitMQ on Heroku
I'm building a Django web app at the moment that I intend to mount on Heroku, and locally at least, I'm using RabbitMQ with Celery.
As at 31 August 2012, RabbitMQ is in private beta as a Heroku ...

