Publish/Subscribe queues are fun and useful. I first learned about them when tinkering with Redis a while back. One big drawback of Redis' Pub/Sub is that Redis project refuses to add some form of transport layer security, which means anything and everything is transferred into and out of Redis unencrypted.
I recently discovered MQTT, the Message Queue Telemetry Transport protocol, which is
is a lightweight broker-based publish/subscribe messaging protocol designed to be open, simple, lightweight and easy to implement.
The MQTT protocol provides one-to-may message distribution over TCP/IP with a small transport overhead, and a method to notify parties of abnormal disconnection of a client.
I think of a Pub/Sub message queue as "Twitter for my network". Clients subscribe to be notified of incoming messages pertaining to specific topics, and other clients publish on those topics. A topic (think of it as a kind of channel) classifies messages. For example, I could have topics called
nagios/mta
, nagios/disk
, test/jp/private
, etc. Clients can subscribe to any number of topics, and may include wild-cards when subscribing (e.g. nagios/#
). In the context of MQTT, messages are blobs of opaque data (UTF-8, i.e. binary safe) with a maximum size of 256MB.
MQTT can be used in low-bandwidth or unreliable network environments, on embedded devices (e.g. on an mbed with the mbed MQTT library, on an Arduino with the Arduino client for MQTT), from Lua,Python, Perl, etc.
What I find particularly interesting with this technology, is that it enables me to employ a single (secured) transport mechanism for all sorts of data. I don't have to pierce holes in a firewall to specifically allow this and that; a single TCP port suffices to transport all sorts of (smallish) stuff.
Mosquitto is an open source MQTT broker, which I chose over IBM's RSMB because source code of the latter is not freely available. Mosquitto is easy to install and deploy, and its documentation is more than adequate.
The Mosquitto broker supports TLS out of the box, and provides authentication either via username/password, pre-shared keys or TLS client certificates. Furthermore, Mosquitto has a simple ACL by which the broker administrator can configure which clients may access which topics. (Clients identify themselves by a name they specify upon connecting.)
A small Python program connects to the broker and subscribes to a few topics:
If I run that on a client, the program will sit there waiting for messages published to the
dns/all
ornagios/#
topics. In a different window, I can use the mosquitto_pub utility to fire off a message:
Whereupon the Python program displays:
(You'll have noticed that the Python program publishes a "Thanks" on the pong topic; clients subscribed to that will receive it.)
Clients can optionally set a Will (in Python before the connect() call). This "last will and testament" (so to speak) is published by the broker when a client disconnects unexpectedly. This can be useful to notify of particular clients' deaths. In other words, if a client issues the following request before connecting, and it dies at some later point, the broker will publish the payload on this client's behalf.
Bridge
Mosquitto can be configured as a so-called "bridge". I could imagine this being useful in, say, different data centers.
In a bridge configuration, Mosquitto is configured to pass certain topics in certain directions. For example, I could configure a bridge to notify a "central" broker for messages of topic
+/important
. A bridge connects to a broker like any other client and subscribes to topics which are then "imported" into the bridge; clients connected to said bridge can thus be notified for particular subscriptions from the "main" broker.
Mosquitto periodically publishes statistics which interested parties can subscribe to, e.g. for monitoring purposes.
The Mosquitto project has a test server you can use if you don't want to set up your own (just launchmosquitto_sub at it), and there's a nice-looking Web-based interface you can use (on your public MQTTserver) at http://mqtt.io.
Wishlist
There are a couple of things which would be neat to see implemented:
- Nagios and Icinga typically "go out" and get statii of services, unless I configure them to accept passive checks. How about a plugin or component for Nagios and Icinga which subscribes to specific topics? That would allow for blindingly fast notification of problems within the network, without having to await a check interval? (It's been a while since I did something with these monitoring processes, so this may be stupid, but it sounds good to me ...) A notification could be wrapped into a JSON object containing a Nagios exit code and the reason.
- Logstash should support MQTT as an input filter. That would allow me to use this message broker for shipping logs. (Logstash already supports AMQP and ZeroMQ.) On the other hand, I could easily create a Mosquitto to Redis "converter", and use Redis as input to Logstash.
Does anybody feel like doing that? :-)
Further reading:
- Choosing your messaging protocol: AMQP, MQTT, or STOMP
- Performance of Redis and ZeroMQ compared
- Workload distribution with MQTT
- A comparison of AMQP and MQTT
- Securing MQTT communication between Ardruino and Mosquitto
- MQTT and Arduino Devices
- Software: Servers/brokers, Client APIs, Tools
- Visualizing energy consumption with MQTT
- Live blinkenlights dashboard with SVG
- Logging DNS queries/responses with MQTT and stash53
- If this, then all of that: home automation with MQTT and homA
- Latitude, longitude? MQTTitude!
- Installing Mosquitto on a Raspberry Pi (Raspbian)
- MQTT Inspector for iOS
- Your location on a Web page with OwnTracks
- Piping messages through Node-RED
- The HiveMQ MQTT broker
- Tracking DHCP leases (dnsmasq) with MQTT
- An extremely small device (for DNS, MQTT, etc.)
- MQTT on the Arduino Yún
- Notifications with MQTT
- A new notification modules for Ansible
- A story of home automation with openHAB, Z-Wave, and MQTT
- Who phoned? FritzBox, openHAB, and MQTT know
- Introducing mqttwarn: a pluggable MQTT notifier
- The Mosquitto MQTT broker gets Websockets support
- An exec plugin for collectd: mqttcollect
No comments:
Post a Comment