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.

RabbitMQ change queue parameters on a production system

I'm using RabbitMQ as a message queue in a service-oriented architecture, where many separate web services publish messages bound for …

rabbitmq pika bunny
Is it possible to move / merge messages between RabbitMQ queues?

I'm looking to know is it possible to move / merge messages from one queue to another. For example: main-queue contains …

python queue rabbitmq amqp pika
inequivalent arg 'durable' for queue

I need some help. I have this code below and the logs tell me that I'm not passing the durable …

python-3.x docker tornado pika
Consume multiple queues in python / pika

I am trying to create a consumer that would subscribe to multiple queues, and then process messages as they arrive. …

python rabbitmq pika
RabbitMQ pika.exceptions.ConnectionClosed

I tried to send message and receive message using RabbitMQ. I dont have computer science background, the terms I used …

python rabbitmq pika
RabbitMQ: What Does Celery Offer That Pika Doesn't?

I've been working on getting some distributed tasks working via RabbitMQ. I spent some time trying to get Celery to …

python rabbitmq celery task-queue pika
In Pika or RabbitMQ, How do I check if any consumers are currently consuming?

I would like to check if a Consumer/Worker is present to consume a Message I am about to send. …

python rabbitmq pika
Pika + RabbitMQ: setting basic_qos to prefetch=1 still appears to consume all messages in the queue

I've got a python worker client that spins up a 10 workers which each hook onto a RabbitMQ queue. A bit …

rabbitmq pika qos
Unable to install pika using pip install

Getting the following after launching : pip install pika (I have shorted the exception to first line in trace and last …

python python-2.7 pip pika
Getting "pika.exceptions.ConnectionClosed" error while using rabbitmq in python

I am using "hello world" tutorial in :http://www.rabbitmq.com/tutorials/tutorial-two-python.html . worker.py looks like this import …

python rabbitmq pika