1
vote
3answers
33 views

Multiple Django projects inadvertently receiving each other's celery tasks

I have five different Django projects all running on one box with one installation of RabbitMQ. I use celery for various tasks. Each project appears to be receiving tasks meant for other projects. ...
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
1answer
45 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 ...
0
votes
1answer
37 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 ...
2
votes
0answers
45 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 ...
0
votes
1answer
84 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
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
1answer
30 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
71 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
2answers
60 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
1answer
36 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 ...
3
votes
1answer
88 views

How to handle long asynchronous requests with pyramid and celery?

I'm setting up a web service with pyramid. A typical request for a view will be very long, about 15 min to finish. So my idea was to queue jobs with celery and a rabbitmq broker. I would like to know ...
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 ...
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
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 ...
2
votes
0answers
58 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
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 ...
0
votes
0answers
38 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
82 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 ...
0
votes
1answer
71 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. ...
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, ...
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 ...
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
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
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 ...
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
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 ...
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
1answer
32 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
41 views

clone library async tasks Celery for PHP (server)

Tell me, exist celery lib for php? Not only client (https://github.com/gjedeer/celery-php), but async tasks thanks.
-2
votes
1answer
224 views

Can I use java send task to celery through rabbitmq?

I just touch celery and java for 2 days. :( Right now, I have a task that java client send task through rabbitmq. Celery will be the worker to handle task. I know it's easy for ...
1
vote
1answer
113 views

Jobs firing to wrong celery

I am using django celery and rabbitmq as my broker (guest rabbit user has full access on local machine). I have a bunch of projects all in their own virtualenv but recently needed celery on 2 of them. ...
2
votes
1answer
74 views

Why does celery add thousands of queues to rabbitmq that seem to persist long after the tasks completel?

I am using celery with a rabbitmq backend. It is producing thousands of queues with 0 or 1 items in them in rabbitmq like this: $ sudo rabbitmqctl list_queues Listing queues ... ...
2
votes
1answer
68 views

When using celery and rabbitmq, is it possible for the queue to get so large that everything locks up?

I am using celery and rabbitmq to do a chain that looks something like this: fetch -> parse -> write pages The write pages part issues it's own set of asynchronous tasks to write each ...
0
votes
1answer
378 views

Setting up Rabbit MQ Heartbeat with Kombu

Edit: The main issue is the 3rd party rabbitmq machine seems to kill idle connections every now and then. That's when I start getting "Broken Pipe" exceptions. The only way to gets comms. back to ...
0
votes
1answer
135 views

Celery losing connection to RabbitMQ

Every now and then my celery worker will "lose" connection to RabbitMQ. I have looked through the logs and do not see anything in the celery logs, but I do see something in the RabbitMQ logs. ...
2
votes
2answers
80 views

Do I have to copy my django project to another machine to perform celery tasks on it?

Here is the problem - I have a server with my django project on it. I have to perform a lot of tasks so I use celery+rabbitmq to deal with them. Recently I discovered that server is running out of ...
1
vote
1answer
136 views

Celery rate_limit affecting multiple tasks

I have a setup with rabbitmq and celery, with workers running on 4 machines with 4 instances each. I have two task functions defined, which basically call the same backend function, but one of them ...
1
vote
0answers
209 views

Celery Flower — Adding a Remote Task Worker doesnt display in flower

I've got Celery flower + rabbitmq setup running on my local box with the UI on localhost:5555 displaying an empty list of workers. Now, on a remote machine I have a celery flower connected to the same ...
0
votes
0answers
178 views

Django: djcelery (kombu) import error: ImportError: cannot import name promise

I am doing the following in my webproj.wsgi file. So yes apache/mod_wsgi is in play. import djcelery djcelery.setup_loader() Below is the stack-trace. [error] [client 127.0.0.1] mod_wsgi ...
0
votes
0answers
257 views

Asynchronous celery task calls in django not getting pushed into rabbitmq queue

I have the celery==3.0.12 and djcelery==3.0.11 installed in my system with django version 1.4.1. I was trying to process some tasks asynchronously using celery in one of my project and it was not ...
0
votes
1answer
175 views

Celery using ActiveMQ

Celery can currently work with RabbitMQ as a messaging system. I am wondering whether the upcoming release of ActiveMQ 5.8, which apparently includes AMQP support, would allow Celery to work with ...
1
vote
2answers
537 views

Django Celery Periodic Tasks Run But RabbitMQ Queues Aren't Consumed

Question After running tasks via celery's periodic task scheduler, beat, why do I have so many unconsumed queues remaining in RabbitMQ? Setup Django web app running on Heroku Tasks scheduled via ...
3
votes
0answers
153 views

How to override send_task BaseTask class?

I did some kind of mini framework to be able to catch connection errors with celery in case rabbitmq shutsdown which handles errors in a more graceful way and it works pretty well except when using ...
1
vote
1answer
303 views

Django Celery tasks succeed but client stuck waiting

I'v just started to implement Django+Celery+RabbitMQ to do some backend tasks. I started with the example add(x, y) task to verify it was working then proceeded to place my existing utility methods in ...
0
votes
0answers
44 views

what for rabbitmq's new taskqueue of random name?

I use celery + rabbitmq I add some delayed task by celery and I find that each time after celery processed one task, a new taskqueue of random name will be created in rabbitmq that's why,what for ...
0
votes
2answers
213 views

How can I view the enqueued tasks in RabbitMQ?

I'm using RabbitMQ as my message broker and my workers are Celery tasks. I'm trying to diagnose an issue where I'm enqueue tasks to RabbitMQ but Celery doesn't pick then up. Is there a way I can ...
13
votes
2answers
1k views

Why do we need a message brokers like rabbitmq over database like postgres? [closed]

I am new to message brokers like rabbitmq which we can use to create tasks / message queues for a scheduling system like celery. Now, here is the question : I can create a table in postgres which ...
3
votes
0answers
232 views

Celery creates multiple queues on RabbitMQ — Non-default queues have no consumers

I am using Django Celery with a RabbitMQ backend, all hosted on Heroku. From the Celery docs, it is clear that Celery is designed to create new queues for tasks. My problem is, when I go into my ...

1 2 3 4