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\'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
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.
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\'m using py-amqplib to access RabbitMQ in Python. The application receives requests to listen on certain MQ topics from time to time.