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

learn more… | top users | synonyms

0
votes
1answer
94 views

how can i use scrapy to finish a distributed scraper with celery?

Now i want to complete a distributed scraper with scrapy and celery,my current idea is to use master-slave method,can someone tell me is that a good idea?is there a good open-source project for this?
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(): ...
0
votes
0answers
47 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
49 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 ...
0
votes
0answers
55 views

Trying to send task using Celery with Redis broker

Trying to use NodeJS to send a job to Celery. Based on the Messages section of the Celery docs found here, when I try to publish a message to Redis, I'm unable to trigger Celery to consume the task. ...
0
votes
0answers
69 views

green threads and celery

I am a newbie to the concept of green threads. I have a system using Celery to dispatch som tens of workers at a time These threads sometime wokr hard CPU wise, crunching numbers, and sometimes wait ...
0
votes
0answers
32 views

Unregistered Task Error with Django Celery

I have a django app that started with django 1.2. I had tasks explicitly named to ‘myapp.tasks.task_name.’ I had CELERY_IMPORTS set to (‘myapp.tasks.task_name’, ). I would still get errors about ...
0
votes
0answers
59 views

accessing celery task results in chain within a group

My workflow with celery is: group1 = (task1, task2) chain2 = (task3, group1) group3 = (task4, task5, chain2) When I start group3, everything goes fine: all the task are executed with the ...
1
vote
1answer
83 views

Celery tasks don't run in PyCharm debugger

I'm using PyCharm and have noticed when I attach a debugger to a celery worker process that my tasks do not complete and this error is logged to the console: Traceback (most recent call last): File ...
0
votes
1answer
32 views

Python Celery Task.update_state potentially blocks forever

I am using Celery current_task to update a tasks progression. It works 99% of the time then will hang indefinitely. celery 3.0.x with RabbitMQ backend current_task.update_state(state=state, ...
0
votes
0answers
45 views

How to write my own Celery worker?

I have a python script that is going to be run on host side. The script can work endlessly or until fail. I have to run the script as task (from web page) passing params. I want to know tasks ...
2
votes
2answers
63 views

Using django-nose and django-celery together — unit testing

I have a django project that used django-nose. I'd like to add django-celery to the project. I use unit tests. Both django-nose and django-celery need a TEST_RUNNER setting in my settings.py file. ...
0
votes
0answers
23 views

Can Celery email me if the task time limit is exceeded?

So I have a celery setup using RabbitMQ as the broker and amqp as the results backend. Sometimes, I will have tasks that go long because I misunderestimated the needed timeout, and as intended, ...
6
votes
3answers
201 views

How to inspect and cancel Celery tasks by task name

I'm using Celery (3.0.15) with Redis as a broker. Is there a straightforward way to query the number of tasks with a given name that exist in a Celery queue? And, as a followup, is there a way to ...
0
votes
1answer
38 views

break infinite loop in celery

I used celery.chord(...) to create a group of tasks and a method which gets called after all tasks in the group are done. I use the amqp result backend (but I want to switch to memcached). My worker ...
4
votes
1answer
127 views

Django Celery in production

I have everything I want to do with django-celery working on my development machine locally. I run Django, djcelery, cellery and the broker (Amazon SQS). It sends tasks and just works. I can set this ...
4
votes
1answer
74 views

running celeyd_multi with supervisor

I'm working with djcelery and supervisor. I was running a celery with supervisor and everything worked fine, once I realized that I needed to change it to celery multi everything broke up. If I run ...
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 ...
0
votes
0answers
34 views

How do I fix this rabbitmq/celery error?

So I'm running celery on multiple servers with a clustered rabbitmq backend. Recently, anything I do with celery has begun hanging indefinitely, and checking the logs for rabbitmq provides me with ...
2
votes
0answers
79 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 ...
1
vote
1answer
87 views

Django Celery Chord Not Executing

I have a program that generates a large list of products through Python's itertools; basically a big set of various combinations of words. There are multiple sets to run through the products() ...
3
votes
1answer
56 views

How to track the progress of individual tasks inside a group which forms the header to a chord in celery?

import celery def temptask(n): header=list(tempsubtask.si(i) for i in range(n)) callback=templink.si('printed at last?') r = celery.chord(celery.group(header))(callback) return r ...
0
votes
1answer
64 views

How to cleanup celery_taskmeta?

I've been reading django-celery to try to find a native way of cleaning up celery_taskmeta, so this table won't grow up too much when in production environment. Can'f find nothing. Should i do a ...
0
votes
1answer
94 views

Error on using IronMQ as celery broker in Heroku

Currently we have a Python Django application hosted in Heroku cloud that uses Celery workers for background processing. Celery workers were using django DB as the broker. Recently we decided to use ...
0
votes
1answer
65 views

Celery countdown error

I am trying to add a countdown to a task but with no luck. Here is the code I am using @celery.task def check_st(key, t): device = Device.query.filter(Device.key == key).first() data = ...
0
votes
1answer
104 views

Celery + SQLAlchemy : DatabaseError: (DatabaseError) SSL error: decryption failed or bad record mac

Error in the title triggers sometimes when using celery with more than one worker on a postgresql db with SSL turned on. I'm in a flask + SQLAlchemy configuration
0
votes
1answer
34 views

Huge delay when using Celery + Redis

I'm testing Django + Celery, hello world examples. With RabbitMQ celery works fine, but when I switched to Redis broker/result I get following: %timeit add.delay(1,2).get() 1 loops, best of 3: 503 ms ...
0
votes
0answers
19 views

Abort task not working as expected in django celery?

I have a celery chain task like this: chain = file_transfer.s(password, source12, destination1) | save_db.s(request.user.id, basename, extension, start_date, end_date, dur, st, f_size, file_test) | ...
0
votes
0answers
30 views

How to kill task in django celery?

I have a django celery tasks as a chain like this: chain = file_transfer.s(password, source12, destination1) | save_db.s(request.user.id, basename, extension, start_date, end_date, dur, st, f_size, ...
0
votes
1answer
70 views

Is it possible to use django-celery models with RabbitMQ?

I'm interested in using the django-celery models to create and monitor recurring tasks. In particular, I am looking at creating recurring cron-like actions and starting/stopping them from the admin. ...
1
vote
0answers
37 views

Celery on a different server [duplicate]

i'm new to Celery and i can't figure out how to set the workers on a different server. I have a web server (using Flask) and a dedicated database server. Is it possible to create a server for ...
0
votes
1answer
81 views

Pythonic method of iterating over subsets of a range of values?

I have a function which resembles: def long_running_with_more_values(start, stop): headers = get_headers.delay(start, stop) insert_to_db.delay(headers) This function is batch processing ...
1
vote
1answer
116 views

Django celery running only two tasks at once?

I have a celery task like this: @celery.task def file_transfer(password, source12, destination): result = subprocess.Popen(['sshpass', '-p', password, 'rsync', '-avz', source12, destination], ...
3
votes
2answers
274 views

Fatal error by starting django-celery with RabbitMQ [Unknown AMQP Method (10, 60)]

I'm trying to set up an instance of Django on a debian server with django-celery talking to RabbitMQ for distributed tasks. I can get the RabbitMQ server set up and it'll respond with a good status, ...
0
votes
1answer
214 views

Python Celery socket.error: [Errno 61] Connection refused

I am using Celery 3.0 and have the configuration file like below. celeryconfig.py BROKER_URL = 'redis://localhost:6379/0' CELERY_RESULT_BACKEND = 'redis://localhost:6379/0' CELERY_TASK_SERIALIZER = ...
0
votes
0answers
30 views

When using django-celery,how do I handle a large number of GET/POST tasks?

So,I have a django application where let's say 10k tasks exist,with a schedule of per 5min to per 15min. All of these tasks involve simple HTTP GET/POSTS. All taks are independent of each other. ...
1
vote
1answer
75 views

Celery - is there way to continue executing chain after subtasks in the middle failed

I need to find the way how continue executing the chain with immutable=True subtasks after any middle subtask throws exception. I already read this thread and this issue comment. Now these bugs are ...
1
vote
3answers
364 views

Does Heroku no longer support Celery?

I was finally getting to the point where I had some free time and wanted to add Celery to my Python/Flask project on Heroku. However, almost all mentions of Celery from the Heroku docs are gone. There ...
0
votes
0answers
93 views

Heroku - creating multiple celery workers

I'm using celery for my application. Currently my application is hosted in Heroku. I have a cronjob that calls a celery job to inserts data into a table 'cacheTable'. So the jobs for this is put into ...
1
vote
1answer
142 views

Task priority in celery with redis

I would like to implement a distributed job execution system with celery. Given that rabbitMQ doesn't support priorities and I'm painfully needing this feature, I turned to celery+redis. In my ...
0
votes
1answer
97 views

Get celery each task log

Right now I'm using celery to handle my deployment script(fabric). So I need to save every project deployment log to database, then later I can check whether the deployment run perfectly or not. ...
0
votes
2answers
86 views

Celery chaining tasks sequentially

i need to download a file through ftp, change it and upload it back. I am using celery to do this but i am running into problems when trying to use chaining, where i am getting : TypeError: ...
2
votes
1answer
101 views

Multiple workers on a single machine for different tasks

I'm trying to build a distributed job execution system with celery. When I launch 2 workers on a single machine (localhost), in which one for an addition task add and the other for a subtraction ...
0
votes
1answer
53 views

How can I create a django celery worker and delete it after my use?

How can I create a django celery worker and delete it after my use? How can I achieve this?
1
vote
0answers
48 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 ...
0
votes
0answers
85 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
1answer
159 views

Storing a task id for each celery task in database

I have using celery with MySQL. I want to to store the task id as a plain integer in a database or in a variable of celery task. How can I do that?
0
votes
0answers
53 views

django celery - multiprocessing

I'm using Django celery for my project requirements. How can i do the multiprocessing of two queues that uses a single worker? I don't want one queue to wait for the task in other queue to finish. ...
0
votes
0answers
54 views

django celery - running two queues in a single worker

I am using celery for my project requirements. Currently i have created a queue 'HighPriorityQueue' along with the default queue , i.e there will be a single worker and two queues. There will be ...

1 2 3 4 5 21