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 ...
2
votes
2answers
281 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 ...
0
votes
1answer
183 views

Django / Celery / Kombu worker error: Received and deleted unknown message. Wrong destination?

It seems as though messages are not getting put onto the queue properly. I'm using Django with Celery and Kombu to make use of Django's own database as a Broker Backend. All I need is a very simple ...
0
votes
0answers
112 views

Celery EventReceiver yields exception ''NoneType' object has no attribute 'method_writer''

Trying to do some real-time event processing using the code-snippet described here: http://docs.celeryproject.org/en/latest/userguide/monitoring.html#real-time-processing Here's my environment: ...
0
votes
1answer
374 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
0answers
82 views

celery 3.0.12 typeerror :run() got multiple values for values for keyword argument 'detach'

i want to run the periodic tasks using celery and celerybeat.am using celery 3.0.12 django-celery 3.0.11 kombu 2.5.3 and billiard 2.7.3.19 python 2.6 django 1.4.2. can any1 please tell where its ...
1
vote
1answer
300 views

Django and Celery: Tasks not imported

I am using Django with Celery to run two tasks in the background related to contacts/email parsing. Structure is: project /api /core tasks.py settings.py settings.py file contains: ...
0
votes
1answer
54 views

using topic exchange to send message from one method to another

Recently, I have been going though celery & kombu documentation as i need them integrated in one of my projects. I have a basic understanding of how this should work but documentation examples ...
4
votes
1answer
307 views

Celery Shutting down

After upgrading from celery 2.4.5 i have started having celery randomly shutdown. I am using celery 3.0.12, boto 2.6 and amazon sqs and django 1.2.7 all this on a centOS machine (pip freeze dump at ...
0
votes
0answers
175 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 ...
1
vote
1answer
219 views

Django/Celery Quickstart example not working (worker is not executing any tasks)

I'm using Django/Celery Quickstart... or, how I learned to stop using cron and love celery, and it seems the jobs are getting queued, but never run. tasks.py: from celery.task.schedules import ...
0
votes
0answers
219 views

“ImportError: cannot import name Exchange” when using Celery w/ Kombu installed

I'm trying to create a Celery worker node on an Amazon EC2 Windows2008 R2 instance. Due to a plugin we require for another Python module, we are required to user Python3. I've installed Python3.2 ...
3
votes
1answer
227 views

Celery Error 'No such transport: amqp'

Celery was working fine, one day the command-line worker failed to start up with the following trace: Traceback (most recent call last): File "/home/buildslave/venv/bin/celery", line 9, in ...
0
votes
2answers
157 views

Celery/Kombu ignoring run_every

I'm kombu/celery setup that I've recently deployed. The tasks execute fine, but appear to run almost continuously rather than respecting the run_every attribute. Perhaps more oddly, this behavior only ...
0
votes
0answers
80 views

how to obtain the broker connection handler within a celery task?

In a celery project, I am using redis as the broker transport. Sometimes I need to directly manage data in redis for runtime requirements, I mean, not related to a celery app. So I guess I should be ...
0
votes
1answer
1k views

Django & Celery — Routing problems

I'm using Django and Celery and I'm trying to setup routing to multiple queues. When I specify a task's routing_key and exchange (either in the task decorator or using apply_async()), the task isn't ...
1
vote
1answer
530 views

Django-Celery 2.5.3 BROKER_URL Error 'No such transport: mysql'

i upgraded my celery from 2.4.X to celery-2.5.2, then modified the Broker_URL to be BROKER_TRANSPORT = "sqlalchemy" BROKER_URL = "sqla+mysql://root:root@localhost:3306/db" this config can be ...
2
votes
1answer
223 views

Revoke Celery task with SQS

I am using Celery + Kombu with Amazon SQL. The goal is to be able to a remove a task already scheduled for some specific datetime. I've tried from celery.task.control import revoke revoke(task_id) ...
1
vote
1answer
425 views

Celery slowing down django [closed]

I have a django 1.3 site using SQLite. It works well. I recently install django-celery along with django-kombu. I am using supervisord to launch the celery dameon with the command: python ...
20
votes
4answers
3k views

Celery with Amazon SQS

I want to use Amazon SQS as broker backed of Celery. There’s the SQS transport implementation for Kombu, which Celery depends on. However there is not enough documentation for using it, so I cannot ...
6
votes
3answers
495 views

'Queueing' tutorials and documentation?

I'm looking for articles and references that give an overview of 'queueing' (I'm probably not even using the right term here). I'm hoping for an introductory styled guide through a world of Redis, ...
10
votes
1answer
2k views

What are the django-celery (djcelery) tables for?

When I run syncdb, I notice a lot of tables created like: djcelery_crontabschedule ... djcelery_taskstate django-kombu is providing the transport, so it can't be related to the actual queue. Even ...