0
votes
0answers
19 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
1answer
13 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
40 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 ...
0
votes
0answers
38 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
17 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
16 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' ...
0
votes
1answer
41 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
28 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
26 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
28 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 ...
4
votes
2answers
85 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
80 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 ...
0
votes
1answer
22 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 ...
0
votes
0answers
70 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
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
3answers
68 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 ...
0
votes
0answers
25 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 ...
7
votes
1answer
103 views

Distributed task queues (Ex. Celery) vs crontab scripts

I'm having trouble understanding the purpose of 'distributed task queues'. For example, python's celery library. I know that in celery, the python framework, you can set timed windows for functions ...
0
votes
2answers
117 views

Python Flask with celery out of application context

I am building a website using python Flask. Everything is going good and now I am trying to implement celery. That was going good as well until I tried to send an email using flask-mail from ...
0
votes
2answers
48 views

Running multiple instances of celery on the same server

I want to run to instances of celery on the same machine. One is for an 'A' version of my application, the other is for the 'B' version. I have two instances, which I start like this: ...
0
votes
0answers
54 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
2answers
49 views

Using celery and rabbitmq to execute a task on annother server

Currently we are working on a Python3 web-project where we have to execute a task for our pyramid application. The celery worker is located on another server. Our question is: How can we execute our ...
0
votes
0answers
63 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 ...
3
votes
0answers
93 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
1answer
76 views

Celery is not working on my Heroku

What on earth am I doing wrong? I have recently found an awesome django template called django-skel. I started a project with it because it made it very easy to use heroku with django. It was all ...
0
votes
1answer
109 views

Celery task for file uploading in django wizard

I have a WizardView covering two forms, the second one has a FileField. Is it possible to create a Celery task for uploading file from that FileField? Should I create another FILE_UPLOAD_HANDLER? All ...
0
votes
1answer
33 views

Embed a celery worker in my own code

I have a service that needs a sort of coordinator component. The coordinator will manage entities that need to be assigned to users, taken away from users if the users do not respond on a timely ...
1
vote
0answers
24 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 ...
3
votes
1answer
46 views

Understanding celery task prefetching

I just found out about the configuration option CELERYD_PREFETCH_MULTIPLIER (docs). The default is 4, but (I believe) I want the prefetching off or as low as possible. I set it to 1 now, which is ...
0
votes
0answers
45 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 ...
1
vote
1answer
45 views

Sending signal to long running method in Django

I want to send a "pause" signal to a long running task in Celery and I'm trying to figure out the best way to do it. In the view I can pull an instance of the object from the database and tell that to ...
0
votes
1answer
76 views

AttributeError: 'Celery' object has no attribute '_config_source'

I'm working on a linux (fedora) machine and I want to use celery in python3.3. When i execute these command: celery -A tasks worker --loglevel=info celery worker --help I get the following error: ...
0
votes
2answers
42 views

How can I trigger tasks from another task in Python Celery?

# get a list of stuff @celery.task def getList(): listOfStuff = getStuff() for thing in listOfStuff: processThing.apply_async(args=(thing)) # another attempt at list of stuff ...
0
votes
2answers
39 views

How to queue up scheduled actions

I am trying to set up some scheduled tasks for a Django app with celery, hosted on heroku. Aside from not know how everything should be configured, what is the best way to approach this? Let's say ...
1
vote
1answer
50 views

What is the recommended way to handle bugs in Celery Task code?

I've been searching for a few days to find a de facto way of handling bugs in a celery task. In the Celery docs, we do learn about retying tasks because of failure. It’s important to note that ...
0
votes
1answer
20 views

celery worker lost

Our deploy process restarts celery using a kill on all the celery proceses in the process list. Sometimes I see "worker lost" in the celery logs. If a task is running when this happens, will the task ...
0
votes
1answer
43 views

Have Celery broadcast return results from all workers

Is there a way to get all the results from every worker on a Celery Broadcast task? I would like to monitor if everything went ok on all the workers. A list of workers that the task was send to would ...
2
votes
1answer
41 views

Local variables not present at Python's rdb debugging breakpoint (in celery task)

I am trying to debug a celery task but the parameters and local variables aren't present when I telnet in: from celery import Celery from celery.contrib import rdb celery = Celery('tasks', ...
3
votes
0answers
51 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 ...
1
vote
0answers
38 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. ...
0
votes
1answer
69 views

celery error using Python3.3

I am using python3.3 and I installed celery3.0.17 When I Do import celery I get the following error: Traceback (most recent call last): File "<interactive input>", line 1, in ...
0
votes
1answer
40 views

celery tutorial: NotRegistered error

I'm trying to get celery's official tutorial work but kept getting this error: D:\test>celery -A tasks worker --loglevel=info -------------- celery@BLR122S v3.0.17 (Chiastic Slide) ---- ...
3
votes
1answer
105 views

Using celery with already existing MySQL table instead of a broker , is it possible?

Task at hand : There is a MySQL table , where a user activity is pushed as a row. That activity needs to be processed later. id | activity_type | activity_data | creation_time | status 23 ...
0
votes
0answers
14 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 = ...
0
votes
1answer
26 views

How can i access args and kwargs just before celery worker executes a task?

I have a python function that is registered as a celery task like: import celery @celery.task(base=MyTask) def my_fn(*args,**kwargs):# dooing stuff I want to check the args and kwargs are still ...
0
votes
1answer
52 views

django-celery PeriodicTask getting last run time using DatabaseScheduler

using django-celery, with the backend djcelery.schedulers.DatabaseScheduler, I need to access the last run time for a celery.task.PeriodicTask The old docs for version 2.4 say there is a class ...
0
votes
1answer
30 views

Difficulty changing a Python method signature across Celery

This is probably a Captain Obvious style question, but I feel like I'm missing something. I inherrited a Python WSGI app that creates Celery tasks. That looks like this: #web.py from bottle import ...
3
votes
1answer
353 views

Multi Celery projects with same RabbitMQ broker backend process

How can I use two different celery project which consumes messages from single RabbitMQ installation. Generally, these scripts work fine if I use different rabbitmq for them. But on production ...
20
votes
2answers
4k 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 ...

1 2 3 4 5 12