Tagged Questions
The py-amqplib tag has no wiki summary.
3
votes
1answer
1k views
How to wait for messages on multiple queues using py-amqplib
I'm using py-amqplib to access RabbitMQ in Python. The application receives requests to listen on certain MQ topics from time to time.
The first time it receives such a request it creates an AMQP ...
2
votes
2answers
570 views
How do you remove a queue binding from RabbitMQ?
I am using RabbitMQ to route messages to interested subscribers by topic. Each subscriber has a queue, and I bind the queue to the topics they are interested in. I would like to allow the user to ...
2
votes
4answers
1k views
Wait for a single RabbitMQ message with a timeout
I'd like to send a message to a RabbitMQ server and then wait for a reply message (on a "reply-to" queue). Of course, I don't want to wait forever in case the application processing these messages is ...
2
votes
1answer
325 views
Posting messages in two RabbitMQ queue, instead of one (using py-amqp)
I've got this strange problem using py-amqp and the Flopsy module. I have written a publisher that sends messages to a RabbitMQ server, and I wanted to be able to send it to a specified queue. On the ...
2
votes
2answers
1k views
Multiple consumers & producers connected to a message queue, Is that possible in AMQP?
I'd like to create a farm of processes that are able to OCR text.
I've thought about using a single queue of messages which is read by multiple OCR processes.
I would like to ensure that:
each ...
1
vote
1answer
264 views
AMQP transactions with Kombu and Rabbitmq
I cant seem to find any documentation on using AMQP transactions through the Kombu api.
This page talks about appending a message to the transactional state but it does not seem related.
I know the ...
1
vote
3answers
384 views
How to use listen on basic.return in python client of AMPQ
I'd like to make sure that my message was delivered to a queue.
To do so I'm adding the mandatory param to the basic_publish.
What else should I do to receive the basic.return message if my message ...
0
votes
1answer
121 views
py-amqp/flopsy: Waiting for a single AMQP message in Python
I have a similar question to this one: It's very easy in py-amqp/flopsy to say "I'm going to wait forever, and I want this callback to be called whenever a message comes in," but I can't find any way ...