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

learn more… | top users | synonyms

1
vote
1answer
133 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
307 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
228 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
33 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
78 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
414 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
96 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
148 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
101 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
94 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
104 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
51 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
90 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
181 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
57 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
56 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 ...
0
votes
1answer
34 views

How to queue a task after a task group in celery?

How can I ensure that a task runs automatically after a group (http://docs.celeryproject.org/en/latest/userguide/canvas.html#groups) has completed its execution?
0
votes
0answers
49 views

Celery 2.5 Starting Multiple workers to handle different types of Job

We need to enable background processing in our Heroku App. There are two kinds of Job i.e Job A and Job B. After creating this we scaled the worked using the command heroku ps:scale worker=1 Both ...
0
votes
1answer
47 views

How to build a daemon to encode video files on S3?

I am interested in running a daemon to go over user uploaded video files and encode them in an optimal format (and add some watermarks). I was considering services such as Zencoder, Encoding.com, ...
0
votes
1answer
57 views

tracking progress of a celery.group task?

@celery.task def my_task(my_object): do_something_to_my_object(my_object) #in the code somewhere tasks = celery.group([my_task.s(obj) for obj in MyModel.objects.all()]) group_task = ...
1
vote
1answer
122 views

celery - chaining groups and subtasks. -> out of order execution

When I have something like the following group1 = group(task1.si(), task1.si(), task1.si()) group2 = group(task2.si(), task2.si(), task2.si()) workflow = chain(group1, group2, task3.si()) The ...
2
votes
2answers
285 views

Differentiate celery, kombu, PyAMQP and RabbitMQ/ironMQ

I want to upload images to S3 server, but before uploading I want to generate thumbnails of 3 different sizes, and I want it to be done out of request/response cycle hence I am using celery. I have ...
2
votes
0answers
86 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 ...
0
votes
1answer
153 views

Is it possible to show progress bar of django celery task? [duplicate]

I am using database backend in django celery. The task information is stored in a table called: celery_taskmeta in database. This is my task: @celery.task def file_transfer(password, source12, ...
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 ...
0
votes
0answers
32 views

How to pass the end_date of every task to another view in Django celery chain()

I have two Django celery tasks like this saved in tasks.py: @celery.task def file(password, source12, destination): result = subprocess.Popen(['sshpass', '-p', password, 'rsync', '-avz', ...
2
votes
1answer
64 views

Should django model object instances be passed to celery?

# models.py from django.db import models class Person(models.Model): first_name = models.CharField(max_length=30) last_name = models.CharField(max_length=30) text_blob = ...
0
votes
1answer
67 views

How to parallelly process a collection of objects with celery workers running on multiple machines?

I have a few hundred thousand documents in a mongoDB collection accessible which follow a MongoEngine Schema called MyDoc. There is something (lets call it my_operation) that is to be run on each of ...
0
votes
1answer
182 views

Django with celery: scheduled task (ETA) executed multiple times in parallel

I'm developing a web application with Django which uses Celery to process asynchronous tasks, especially for transactional emails. One on my email task is scheduled with the ETA option but it's ...
0
votes
1answer
140 views

Celery sqlalchemy session

How can I use sqlalchemy models in celery delayed tasks ? It looks like celery has this option https://github.com/celery/celery/blob/master/celery/backends/database/session.py , but I can't find an ...
0
votes
1answer
37 views

Is there a way for workers in celery to tell the broker “don't send me the next message until I told you so”

I am creating an app where order of execution is important. My tasks involves persisting data on a db. I wanted to make sure that the next data on the queue will never be process until the current ...
0
votes
1answer
207 views

Flask-Mail breaks Celery

I've got a Flask app where celery works fine and Flask-Mail on it's own works fine as well. from celery import Celery from flask_mail import Mail, Message app = Flask(__name__) mail = Mail(app) ...
1
vote
1answer
154 views

Let's Talk about Celery and Recursion and Talking to the Twitter API, shall we?

I'm working with Django 1.4 and Celery 3.0 (rabbitmq) to build an assemblage of tasks for sourcing and caching queries to Twitter API 1.1. One thing I am trying to implement is chain of tasks, the ...
0
votes
0answers
59 views

How to clear AsyncResult in celery

I am writing tests in Python testing a celery implementation backed be Rabbitmq. My code looks something like this: result = celery_task.delay(arg1, arg2) assertEqual(len(result.get()), 1) It ...
0
votes
0answers
39 views

Celery: Distributing a job to worker with data

I have a cluster with 5 computers right now. Each node has data for a set of dates and there is a lot of overlap of dates on nodes, usually each date's data is on 3 or 4 of the nodes. There is a ...
0
votes
0answers
58 views

celerybeat Database Scheduler on PostGREsql: Which Schema Will It Use

Does the djcelery.schedulers.DatabaseScheduler support working with custom schemas, or will it always use public? I have a database with multiple schemas, one per client. Per this methodology, each ...
1
vote
1answer
50 views

How to schedule weekday-aware jobs in celery

Is it possible to configure a sophisticated schedule with celery beat? For example, something like this: On Monday-Friday, do job A with parameters (x1, y1), then do job B On Saturday, Sunday, do job ...
0
votes
2answers
107 views

Celery Task Chain and Accessing **kwargs

I have a situation similar to the one outlined here, except that instead of chaining tasks with multiple arguments, I want to chain tasks that return a dictionary with multiple entries. This is -- ...
0
votes
1answer
84 views

How to route a chain of tasks to a specific queue in celery?

When I route a task to a particular queue it works: task.apply_async(queue='beetroot') But if I create a chain: chain = task | task And then I write chain.apply_async(queue='beetroot') It ...
1
vote
2answers
46 views

Where is the huey consumer configuration?

I'm trying to get running the Huey task queue for python (it's a Celery alternative) and I'm stuck with starting the consumer with main.Configuration (as it's written in the tutorial). I know the ...
0
votes
0answers
54 views

DJANGO CELERY workers stop taking requests after few hours

I'm wondering if someone can help me with a problem running Django, NGINX and Celery to process high volumes of webpage screenshots using cutycapt and xvfb (on the worker threads). My worker threads ...
0
votes
2answers
68 views

Django-Celery - How to know when a subtask has been completed?

I'm using Django-Celery-Email. This app will send a task to send an e-mail with the regular "from django.core.mail import send_mail". I have wrote a task that will call the send_mail task, but I need ...
0
votes
1answer
57 views

Access Arguments to Parent Task from Subtask in Celery

Is it possible to access the arguments with which a parent task A was called, from its child task Z? Put differently, when Task Z gets called in a chain, can it somehow access an argument V that was ...
0
votes
0answers
42 views

Error when install Celery (3.0.15)on Jython(2.54rc) on ubuntu manually

I just touch Jython, and Celery There is an error message when install Celery(3.0.15) on Jython(2.5) on Ubuntu (manually install or easy_install) *Downloading ...
0
votes
0answers
77 views

Errors when import celery.task by Jython 2.5 or 2.7 (Ubuntu)

Goal: send task to celery(python) by Jython Problem: when using jython import celery.task like this "from celery.task import task" BTW, I do the same thing by Python is ok Got error ...
0
votes
1answer
21 views

python vipscc in celery Missing argument

Im trying to write a celery task for processing large tif files. From past experience Ive found vipscc uses less memory than pil to process/resize tif's so id like to use that module. The problem is ...
0
votes
1answer
33 views

Email - Process Ads website emails with custom solution or using Celery/RabbitMQ?

I need to process e-mails for a medium project that will be expectecting to send 20 or 30 emails per hour. I've designed a solution in other project that uses a database table and a cronjob running ...
0
votes
0answers
68 views

Python Celery: Task Logging over chains with logfile per maintask

I'm wondering what is the best practice to do the logging with celery (3.0.12) chains. My webapp calls a main task which chains together a few subtask. So my task.py looks like: from proj.celery ...
2
votes
0answers
103 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 ...

1 2 3 4 5 21