Celery is a distributed task queue framework for Python, used for asynchronous and parallel execution.
0
votes
1answer
8 views
django and celery beat scheduler no database entries
my problem is that the beat scheduler doesn't store entries in the table 'tasks' and 'workers'. i use django and celery. in my database (MySQL) i have added a periodic tast "Estimate Region" with ...
0
votes
1answer
21 views
How Do You Pass New URLs to a Scrapy Crawler
I would like to keep a scrapy crawler constantly running inside a celery task worker probably using something like this. Or as suggested in the docs
The idea would be to use the crawler for querying ...
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 ...
0
votes
1answer
17 views
How can we see the threads in Celery?
I am trying to set a different number of concurrent threads in Celery using --concurrency=1 (based on Workers Guide).
Anyway, when I run the daemon (celeryd ... --concurrency=1) I don't know how to ...
0
votes
1answer
11 views
ImportError: No module named dateutil
I am trying to follow the example in the "First Steps with Celery" document. I have installed Celery using pip.
I created a file called tasks.py in ~/python/celery, and it contains the following:
...
0
votes
0answers
11 views
How to stop a celery task from being executed
Using celery on MongoDB, we want to be able to stop task execution. For instance when task fails, and we are waiting for a fix.
What we would need would be a revoke but on a task_name not task id.
I ...
0
votes
0answers
17 views
Celery beat queue includes obsolete tasks
I'm using periodic celery tasks with Django. I used to have the following task in my app/tasks.py file:
@periodic_task(run_every=timedelta(minutes=2))
def stuff():
...
But now this task has been ...
0
votes
0answers
20 views
Data locality via many queues in Celery?
We're trying to design a distributed pipeline that crunches large numbers of data chunks in a parallel fashion. We're moving towards adopting celery, but one of the requirements is that we need to be ...
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
...
0
votes
1answer
28 views
Using node.js/lessc command inside python (celery)?
I am not sure if it is good idea. I am not even sure if I can do this. But here is my requirement.
I have one default less css file and other dynamic less file generated from datasets. Now, I want ...
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
1answer
32 views
celery + django - how to write task state to database
I'm running Celery with Django and RabbitMQ and want to see the task states in the database table. Unfortunately no entries are written into the table djcelery_taskstate and I can't figure out why.
...
0
votes
0answers
29 views
Celery task hangs when chaining to a group
I'm trying to write a celery workflow that syncs a set of contacts from a remote system to the local database. I would like to split the results of the remote system api call into several batches, so ...
0
votes
0answers
11 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
1answer
15 views
Can I have Celery reenqueue a task?
I'm using a Celery task queue to process web requests asynchronously. If I wanted to prevent workers from processing the same kind of task too often, is it possible for a worker to reenqueue a task? ...
0
votes
2answers
48 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 ...
1
vote
1answer
23 views
Celery isn't respecting the queue attribute
So for some of my tasks on Celery 3.0.19, Celery is apparently not respecting the queue attribute, and is instead shipping the task out to the default celery queue
/This is a stupid test with the ...
0
votes
0answers
45 views
Celery tasks stuck in RECEIVED state after execution
Celely + rabbitmq as backend
Simple task which only makes one update request to database.
This task is executed periodically in batches (about 5 at once).
Sometimes 1 or 2 of them stays in RECEIVED ...
0
votes
1answer
38 views
Django Celery Error
I'm been trying to schedule a task for celery to do at the background but I keep encountering issues.
Quick reference on what I've done so far
I installed celery and django-celery via easy_install, ...
0
votes
0answers
23 views
What could make celery worker becoming unresponsive after a few tasks?
My workers are stopping after a few (<50) tasks.
I have a very simple client/worker setup. The client post the task via func.delay(...) then enter a while loop to wait for the completion of all ...
0
votes
1answer
18 views
Is it possible to return a list of a class in celery?
I have a question about Celery.
I am calling a function named task and I want to return a list of a specific class.
But if I do this I get an error on my server:
No module named 'modelsgert'
...
-1
votes
0answers
16 views
How I do redirect thought task celery?
I'm making restriction access to content about 20 minutes.
I wrote the celery task(countdown=1200):
@task(name='access', ignore_results=False, routing_key='default')
def access_to_seance():
...
0
votes
1answer
26 views
Celery worker with gevent pool + Sentry logger = hang
I'm using Celery with Django integration. I discovered some troubles with new commit to my current project: Celery worker with gevent pool refused to handle new tasks. After short investigation, I ...
0
votes
1answer
41 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 ...
1
vote
2answers
36 views
Django Celery installation Error
I'm been trying to install celery for a couple of days and the problem , I'm facing is . when I try to do manage.py syncd . I get the error message .
C:\o\17\mysite>manage.py syncdb
Error: No ...
0
votes
1answer
44 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
0answers
29 views
How to get the execution time for a task using celery?
I want to fetch the execution time for any task, assuming I have task_id with me. Is there a way to get the execution time? I know the time will be logged by celery, but I don't want to parse the log ...
0
votes
1answer
31 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
0answers
12 views
Celery: Duplicate id in Table djkombu_queue after db dump
We're using a postgres db for our django application.
Recently we had problems with async tasks handled by celery . Those problems were caused by duplicate IDs in the table djkombu_queue. Here is ...
0
votes
0answers
32 views
Django Celery Custom Periodic Task Not Executing
I tried using this code to try to dynamically add / remove scheduled tasks.
My tasks.py file looks like this:
from celery.decorators import task
import logging
log = logging.getLogger(__name__)
...
0
votes
1answer
34 views
Sharing Pyramid's Database Session with Celery Task
What is the best way to share the SQLAlchemy session between my Pyramid application and Celery tasks while only instantiating the database engine once? I looked at this answer here, however, I don't ...
0
votes
1answer
15 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.
...
1
vote
1answer
19 views
Does the mongoDB broker for Celery work by polling?
The Celery documentation for the mongoDB broker does not say whether or not it works by polling. I read in this blog post that pub/sub is possible with mongoDB, but I don't know if that's what the ...
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 ...
4
votes
2answers
89 views
Stream results in celery
I'm trying to use celery to schedule and run tasks on a fleet of servers. Each task is somewhat long running (few hours), and involves using subprocess to call a certain program with the given inputs. ...
0
votes
1answer
81 views
Consuming from queues based upon external event (event queues)
I am running into a use case where I would like to have control over how and when celery workers dequeue a task for processing from rabbitmq. Dequeuing will be synchronized with an external event that ...
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 ...
0
votes
1answer
24 views
Are the ID in celery's message format per task or per call of a task?
I see in the Celery protocol Docs (http://docs.celeryproject.org/en/latest/internals/protocol.html) that there is an ID in the message. It says that it is the "Unique id of the task (UUID)"
It this ...
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 ...
0
votes
1answer
30 views
Multiple server environments with RabbitMQ and Celery
I have a Django-based service with Celery, using RabbitMQ as the broker. I want to install several environments on the same machine.
What's the best way of configuring Celery for each environment? ...
0
votes
0answers
12 views
celery with amazon sqs , the producer not able to add message to task
I am running a celery with sqs as Q , I am using this code
from Tasker import add
add.delay(2,2)
This acts as a producer . Its works inconsistently , some time it adds the message adds , some ...
0
votes
0answers
36 views
django celery redis error ValueError: invalid literal for int() with base 10: 'OK'
I keep getting the error "ValueError: invalid literal for int() with base 10: 'OK'" when I am trying to run a delayed task with celery with redis in django. Could some show me what is wrong ? here is ...
0
votes
1answer
38 views
“ResourceClosedError: The transaction is closed” error with celery beat and sqlalchemy + pyramid app
I have a pyramid app called mainsite.
The site works in a pretty asynchronous manner mostly through threads being launched from the view to carry out the backend operations.
It connects to mysql ...
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 ...
0
votes
0answers
85 views
Using Celery for Realtime, Synchronous External API Querying with Gevent
I'm working on a web application that will receive a request from a user and have to hit a number of external APIs to compose the answer to that request. This could be done directly from the main web ...
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 ...
0
votes
0answers
40 views
Task exception handling in chain
I'm using the latest version of django-celery with redis as broker and backend.
I have two tasks in a chain:
1. open zip file via HTTP and save it to disk
2. extract this file
I'm trying to set ...
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 ...
0
votes
1answer
29 views
Local-only message queue?
I'm using Celery with RabbitMQ.
For my use case, I'll definitely have instances where I'll have messages which should be executed on any given node, but for one specific queue, I'll need things only ...
1
vote
3answers
69 views
Running a task after all tasks have been completed
I'm writing an application which needs to run a series of tasks in parallel and then a single task with the results of all the tasks run:
@celery.task
def power(value, expo):
return value ** expo
...

