Rabbitmq listens for UDP connection

Is there a way for RabbitMQ to listen on UDP connections and put these packets in somesort default queues, which can then be pulled from a standard client? Would ActiveMQ or ZeroMQ be better for this?

+5
source share
2 answers

Consider using a simple proxy server to receive incoming UDP packets and send them to RabbitMQ via AMQP. For instance. in Python, you can configure a UDP server, and then use the PQ AMQP library to communicate with your RabbitMQ server.

Hooray!

+4
source

- udp-exchange rabbitMQ. , , udp to amqp forwarder..

https://github.com/tonyg/udp-exchange

RabbitMQ x-udp. x-udp UDP , . , , IP- UDP-.

+4

All Articles