|
|
|
|
|
by dlandiak
912 days ago
|
|
RabbitMQ with the MQTT plugin is actually a good choice for many scenarios, especially when you need a messaging system that supports the MQTT protocol alongside other messaging protocols like AMQP.
However, as they themselves say, There are other good MQTT brokers out there, and some will be able to handle even more MQTT client connections than RabbitMQ because other brokers are specialised in MQTT only.
TBMQ - is exactly such a MQTT broker that is designed to be scalable, fault-tolerant, and efficient. The recent performance tests showed the TBMQ quality.
Additionally, TBMQ can be easily launched as a single server, two servers, three servers, and so on. Compared to RabbitMQ -
https://www.rabbitmq.com/mqtt.html#requirements |
|