Questions tagged [kombu]

Kombu is an AMQP messaging framework for Python.

Kombu is an AMQP messaging framework for Python. Kombu provides a high-level API for messaging using the AMQP standard.

Allows application authors to support several message server solutions by using pluggable transports.

  • Supports multiple transports(Redis, Beanstalk, CouchDB, and MongoDB. SQLAlchemy and Django ORM)
  • Supports automatic encoding, serialization and compression of message payloads.
184 questions
0
votes
1 answer

Cannot import kombu from jython

I'm trying to port a python application to jython and have run into a problem where jython cannot import kombu (which is used prominently in the original python app). I have installed kombu via pip (and even tried the -U option to get the most…
Flint
  • 11
  • 1
0
votes
1 answer

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 using different brokers have me confused. Here is the…
Amyth
  • 32,527
  • 26
  • 93
  • 135
0
votes
1 answer

django-celery managment command giving AttributeError: '_multiprocessing.SemLock' object has no attribute 'name'

I want to send an notification email to admin e.g if post is spamed then admin should get email. am using django-celery templated_email and kombu. but when i run the any management command of djcelery am getting error D:\test\testapp>python…
manali
  • 21
  • 4
0
votes
2 answers

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 appears in production and works fine locally.…
Chris
  • 555
  • 2
  • 9
  • 28
1 2 3
12
13