Top "Pika" questions

Python-Pika is a pure-Python implementation of the AMQP 0-9-1 protocol that tries to stay fairly independent of the underlying network support library.

How can I recover unacknowledged AMQP messages from other channels than my connection's own?

It seems the longer I keep my rabbitmq server running, the more trouble I have with unacknowledged messages. I would …

rabbitmq celery amqp pika celeryd
Error "unknown delivery tag" occurs when i try ack messages to RabbitMQ using pika (python)

I want process messages in few threads but i'm getting error during execute this code: from __future__ import with_statement …

python message-queue rabbitmq pika
How to create a delayed queue in RabbitMQ?

What is the easiest way to create a delay (or parking) queue with Python, Pika and RabbitMQ? I have seen …

python queue rabbitmq delay pika
python no module name pika when importing pika

I installed pika for python running on a mac sudo pip install pika==0.9.8 I make sure is installed, this is …

python pika python-pika
Python and RabbitMQ - Best way to listen to consume events from multiple channels?

I have two, separate RabbitMQ instances. I'm trying to find the best way to listen to events from both. For …

python rabbitmq pika
How to connect pika to rabbitMQ remote server? (python, pika)

In my local machine I can have: connection = pika.BlockingConnection(pika.ConnectionParameters('localhost')) for both scripts (send.py and recv.…

python rabbitmq pika
Handling long running tasks in pika / RabbitMQ

We're trying to set up a basic directed queue system where a producer will generate several tasks and one or …

rabbitmq pika
RabbitMQ, Pika and reconnection strategy

I'm using Pika to process data from RabbitMQ. As I seemed to run into different kind of problems I decided …

python rabbitmq pika
rabbitmq multiple consumers on a queue- only one get the message

I implemented multiple consumers, who are fetching messages from a single queue, I am doing this using something similar to …

python rabbitmq amqp pika
How to reconnect to RabbitMQ?

My python script constantly has to send messages to RabbitMQ once it receives one from another data source. The frequency …

python rabbitmq pika