Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Rabbitmq listen to UDP connection

Is there a way to have RabbitMQ listen for UDP connections and put those packets into somesort of default queue which can then be pulled from by a standard client? Would ActiveMQ or ZeroMQ be better for this?

like image 348
Kevin Avatar asked Aug 15 '12 18:08

Kevin


1 Answers

Consider using a simple proxy front for receiving incoming UDP packets and sending them off to RabbitMQ via AMQP. E.g. in Python you can setup a UDP server and then use the AMQP Pika library to speak with your RabbitMQ server.

Cheers!

like image 179
Sachin Avatar answered Sep 22 '22 06:09

Sachin