Celery is a distributed task queue framework for Python, used for asynchronous and parallel execution.
1
vote
0answers
313 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
195 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 ...
1
vote
0answers
114 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()
...
1
vote
0answers
65 views
Number of process and Currency and Pool Size in Celery
In celery 3.0, what are the relationship among Max concurrency, number of actually running processes and pool size ?
I run celery with max-currency( -c ) set to one and three celeryd processes pops ...
1
vote
0answers
419 views
Django periodic tasks in Celery
i"m having this issue with periodic tasks not running. I"m using redis as a backend and can run the tasks manually, this is the celery debug log
[ModelEntry: ...
1
vote
0answers
261 views
Lower memory usage of celery tasks?
I'm using django, celery and rabbitmq to run 2 periodic tasks and 6 ad-hoc tasks. All of the tasks are located in (app)/tasks.py. The periodic and ad-hoc tasks are split between two seperate queues ...
1
vote
0answers
620 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 ...
1
vote
0answers
83 views
Celery Abstract Task event handlers not executed
I have a single abstract Task class set for 3 different tasks. For one task, the after_return/on_success event handlers are executing fine, but for the other two tasks - the event handlers are not ...
1
vote
0answers
112 views
Setting up service to execute tasks in web clustered environment
I am looking for ways to reliably execute a task (just one time at certain date/time) in web clustered environment: for example to send an email reminder to user after 7 days since initial ...
1
vote
0answers
380 views
stdout and stderror from fabric task wrapped in celery
im running a simple task, triggered from a django view:
task = mock_deploy.delay()
mock_deploy is defined as:
from celery.decorators import task as ctask
from project.fabscripts.task.mock import *
...
1
vote
0answers
201 views
Disable pidfile for celerybeat
celeryd doesn't require a pidfile, but celerybeat seems to. Is there any way to disable it? I'm using Upstart to manage processes so using a pidfile is redundant.
1
vote
0answers
83 views
why my celeryd take high cpu after it started a couple of days?
when i start celeryd and run it for two or three days, it always take very high cpu(about 100%) every time.
and at the same time, tasks are processed very slow(20-30 seconds).
here is my ...
1
vote
0answers
119 views
Celery ignored the parameter “queue” and sent message to all queues
I use celery with redis as a broker.
I build out an add task and run two workers listen to different queues for testing.
celeryd -I tasks -l info -Q tasks
celeryd -I tasks -l info -Q count
Here ...
1
vote
0answers
239 views
Celery workers cannot access the database
I am running the latest stable version of Celery and django-celery. I have defined a task which is passed a primary key, gets the object associated with that key, and processes it. This all works well ...
1
vote
0answers
228 views
Cant redirect stdout, stderr to another logger in Celery
Cant redirect stdout to another logger in Celery, I have created special logger objects for Celery with special Handler. And I want to catch all exception occured when task are executed. I add handler ...
1
vote
0answers
72 views
Django-celery tables spontaneously dropped
I deployed and started up a Django celery-based project on Friday night. On Sunday at 6:10pm, apparently all the djcelery tables disappeared from my database, causing an immediate shutdown of Celery. ...
1
vote
0answers
172 views
select.poll ImportError when imported from celery
When I try to start the celery worker with ./manage.py celeryd --loglevel=DEBUG , it raise me an ImportError exception.
But if I put the line which raise the exception in the python interpreter:
...
1
vote
0answers
227 views
debugging celery + django stack
I have a Celery task in a Django module that manipulates the backend database. The tasks are started like this:
for r in results:
try:
r.wait()
except Exception as e:
...
1
vote
0answers
188 views
maximum (cap) value for CELERYD_TASK_TIME_LIMIT?
we're doing some crazy fun stuff with django-celery. A couple of our tasks take a while, and we'd like to let them do their thing. I tried setting CELERYD_TASK_TIME_LIMIT to a big value like 86400 (24 ...
1
vote
0answers
160 views
get same row of information for celery task as celeryev or celerymon using simple python code
I'm running celerly 2.5.1 with redis. I would like to obtain the same task information for a celery task that is displayed in celerymon or celeryev. That is:
celeryev 2.5.1
││ UUID ...
1
vote
0answers
568 views
Django Celery FFMPEG: convert video files
I'm trying to convert video files using FFMPEG via Celery tasks. The generated command to be executed looks like
ffmpeg -i /path/to/flv -ar 22050 -ab 96k -r 24 -b 600k -f flv ...
1
vote
0answers
257 views
celery 2.x @periodic_task's not showing up in task registry
I've recently updated to celery 2.0 and I'm trying to use the new (to me) decorators for periodic tasks:
@periodic_task(run_every=timedelta(days=1))
def some_task(**kwargs):
#task here
I also ...
0
votes
0answers
10 views
celery.chord gives IndexError: list index out of range error in celery version 3.0.19
Has anyone seen this error in celery (a distribute task worker in Python) before?
Traceback (most recent call last):
File ...
0
votes
0answers
14 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
22 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
23 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 ...
0
votes
0answers
32 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
12 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
0answers
52 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
0answers
25 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
0answers
32 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
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
34 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
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
0answers
90 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 ...
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 ...
0
votes
0answers
26 views
Get progress from async python celery chain by chain id
I'm trying to get the progress of a task chain by quering each task status.
But when retrieving the chain by it's id I get some object that behaves differently.
In tasks.py
from celery import Celery
...
0
votes
0answers
13 views
Best way to map a generated list to a task in celery
I am looking for some advice as to the best way to map a list generated from a task to another task in celery.
Let's say I have a task called parse, which parses a PDF document and outputs a list of ...
0
votes
0answers
65 views
Celery tries to connect to the wrong broker
I have in my celery configuration
BROKER_URL = 'redis://127.0.0.1:6379'
CELERY_RESULT_BACKEND = 'redis://127.0.0.1:6379'
Yet whenever I run the celeryd, I get this error
consumer: Cannot connect ...
0
votes
0answers
68 views
Not seeing my heroku celery workers stats on new-relic
I have a python server running on heroku with one web dyno and an additional dyno running my celery tasks.
I added the new-relic add-on and can see monitoring data for my application except data for ...
0
votes
0answers
29 views
Django get() calls in Celery tasks return 32 matches
I am observing a very weird bug with Celery. Some of the code in my tasks file make some get requests that I am certain should return 1 result, but they sometimes return 32 results. When this error ...
0
votes
0answers
50 views
controlling queue size in rabbitMQ when using celery
I can see the queue of reserved tasks in celery by:
from celery.task.control import inspect
len(inspect().reserved().values()[0])
However, this queue seems to be small, (around 8-10) even when I ...
0
votes
0answers
18 views
javac is not running under a subprocess launched over http
I'm running a django web application witch launch a java compilation command and I need to catch the javac stderr, I've put it in a separate task (Celery), here is the code:
class JavaSubTask(Task):
...
0
votes
0answers
38 views
Unregistered task in Celery
tasks.py:
from celery import Celery
from django.http import HttpResponse
from anyjson import serialize
celery = Celery('tasks', broker='amqp://guest@localhost//')
#@celery.task
def add(request):
...
0
votes
0answers
61 views
How can I minimise connections with django-celery when using CloudAMQP through dotcloud?
After spending a few weeks getting django-celery-rabbitmq working on dotcloud I have discovered that dotcloud is no longer supporting rabbitmq. Instead they recommend CloudAMQP. So I've set up ...
0
votes
0answers
35 views
Working example of celery with mongo DB
I'm new to celery and am working on running asynchronous tasks using Celery. I want to save the results of my tasks to mongodb. I want to use the amqp borker.The celery project examples didn't help me ...
0
votes
0answers
50 views
Upstart script for Celery
I have celeryd daemons, working on small tasks. This daemon was configured with Upstart script
start on starting cessna
stop on stopping cessna
respawn
script
chdir ...
0
votes
0answers
54 views
Celery task id in task_revoked handler
So I have a task that creates a work directory and does all its work there.
The task is called from server A and executed on worker servers.
I need to make sure the work directory is deleted once the ...
0
votes
0answers
38 views
Celery: Single instance of an active task in a distributed environment
I have a requirement where my application submits a certain kind of task. This task is submitted by the clients. To make sure that they don't end up submitting too many tasks, every time they submit a ...
