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 to add a header key:value pair when publishing a message with pika

I am writing an automated test to test a consumer. So far I did not need to include a header …

python rabbitmq amqp pika
Python Pika - Consumer into Thread

I'm working on a Python app with a background thread for consuming message from a RabbitMQ Queue (topic scenario). I …

python multithreading rabbitmq pika
AMQP: acknowledgement and prefetching

I try to understand some aspects of AMQP protocol. Currently I have project with RabbitMQ and use python pika library. …

python rabbitmq amqp pika
Synchronous and blocking consumption in RabbitMQ using pika

I want to consume a queue (RabbitMQ) synchronously with blocking. Note: below is full code ready to be run. The …

python python-2.7 rabbitmq pika
No handlers could be found for logger "pika.adapters.blocking_connection"

Similar questions all seem to be based around using a custom logger, I'm happy to just use the default / none …

python amqp pika
Is there any way to list queues in a rabbitmq via pika?

I know that we can do this to list queue in a rabbitmq. rabbitmqctl list_queues but how can I …

python queue rabbitmq pika
RabbitMQ Pika connection reset , (-1, ConnectionResetError(104, 'Connection reset by peer'))

searched through stackoverflow and posting this question because no solution worked for me and my question might be different from …

python-3.x multithreading rabbitmq pika python-pika
pika, stop_consuming does not work

I'm new to rabbitmq and pika, and is having trouble with stopping consuming. channel and queue setting: connection = pika.BlockingConnection(…

python rabbitmq pika
Which form of connection to use with pika

I've been trying to figure out which form of connection i should use when using pika, I've got two alternatives …

python rabbitmq pika
pika.exceptions.ProbableAuthenticationError when trying to send message to remote queue

I'm trying to run RabbitMQ Python tutorial but with sender on virtualbox host machine and receiver and queue on virtualbox …

python rabbitmq pika