The Internet of Things is finally happening at mass scale as the cost of the sensors, networks and computing power has made the economics work. There are many articles on the web that focus on the sensors, the processes and the opportunity for analytics to drive new efficiencies using IoT, so I will focus on how the data moves from place to place within the architecture. You might also be interested in a blog post called  “Why IoT Needs Messaging”.

In an IoT architecture there are four different kinds of connections across which data moves:
1) device to device, 2) device to gateway, 3) gateway to data system and 4) between data systems.

iot-protocols-diagram

numbered-list-1Device to device communications

When devices need to communicate with other devices, the use case likely requires that they receive data instantaneously because the timeliness of the incoming data is paramount.  Examples of device to device communications include:

  • Connected cars sharing information to cooperate for safer, more efficient traffic flow. Military command and control where drones, planes and ground forces need to coordinate but no reliable network is available.
  • On the factory floor where industrial control systems, robots and sensors must work together to ensure the safe, efficient assembly of components within very specific parameters.
  • In the field during emergency response or military scenarios where equipment like remote cameras and other sensors, drones and robots must coordinate their movement and actions as they assist and inform decision makers, operators and other personnel.

Very few IoT applications today include this form of communication, mostly because the devices are not sophisticated enough to handle them. As time passes, technology continues to advance and use cases become more sophisticated, this will become more common.

Device to gateway connectionsDevice to gateway connections

Each “thing” needs to send its data to an aggregating gateway node through what is sometimes called the “fog” layer. They call it the fog because gateways can physically reside in a wide range of places depending on requirements, including clouds and datacenter DMZs protected by security firewalls. Gateways perform two common functions. First they consolidate and route data from sensor devices to the appropriate data systems within the datacenter or cloud. Second, they can analyze or aggregate device data and forward that data to the core systems and/or respond back to devices if a time-sensitive exception condition is noticed.

The type of data or message exchange pattern that’s best depends on the device’s capabilities and what it is asked to do. How much power, processing, and persistent and non-persistent memory does it have? What is the network capacity and how reliable is it?  How often does the device generate data?  How important is its data quality? How secure is the device?  These criteria will determine what protocol and quality of service is the best choice to move data between the device and the gateway.

Gateway to data systemsGateway to data systems

The gateway is usually a much more capable computing device than the sensor, with a reliable and fast network connection. So here the determination of what message protocols and qualities of service to use is driven not by the gateway’s computing capabilities or connectivity, but by data traffic patterns such as periodic burstiness and congestion, number of concurrent connections required, and security requirements.

Between the data systems in the datacenter or cloudBetween the data systems in the datacenter or cloud

Within the secure datacenter, requirements such as integration with existing applications, high throughput, high availability, disaster recovery and ease of deployment become the critical decision factors.

Of course, this flow of data is bi-directional: while much more traffic will “fan in” from device to gateway to datacenter, select data will also “fan out” from datacenter to devices to initiate change or adaptation of the “things”.  An example would be a connected car whose navigation system learns about a new accident and updates the navigation system with new route data.

IoT Protocols

When selecting messaging protocols for IoT, you will want to approach the challenge on a connection by connection basis. It is unlikely that you’ll be able to choose just one protocol for the end-to-end picture above without compromising some aspect of your system. First let’s understand each of the commonly used protocols and what they do best.


MQTT

mqtt-logo-whitebgMQ Telemetry Transport is an open standard protocol maintained by OASIS, designed for IoT communications over TCP. There are currently two versions in use, MQTT 3.1.1 and MQTT 5.0.

Pros Cons
  • Lightweight API requires minimal processing on a device. Good for low battery consumption.
  • Message header can be as small as two bytes. This makes it very bandwidth efficient, ideal for spotty coverage or limited networks
  • Supports the major IoT message patterns: publish/subscribe and request/reply. (supported by a messaging broker’s extension of MQTT now and will be in a later version).
  • MQTT-SN (sensors network) supports topic ID instead of topic name and UDP, ZigBee, Bluetooth and other wireless protocols (i.e., TCP is not needed).
  • It has no section for message properties.
  • No support for such header fields as TTL (time-to-live), replyTo and user properties.
  • No message queue support (i.e., only the most recent message is stored in a message broker).

MQTT was developed to meet device to gateway messaging requirements, and doesn’t meet most needs of gateway to a datacenter or intra-datacenter connections.


JMS

jms-logo-whitebgJava Message Service is a 15-year old messaging standard first defined by Sun Microsystems, widely used to integrate server applications like databases, analytics engines and business process automation engines with a message bus.  JMS defines a standard set of APIs, but does not specify a protocol. That means you can choose from among many JMS providers, but different JMS stacks do not interoperate on the wire. JMS is primarily used with Java applications.

Pros Cons
  • Widely used in the datacenter already, enabling easy integration among server applications.
  • Support for JMS APIs is embedded in most commercial and open source application servers and message brokers.
  • Support for all classes of service.
  • Power, processing and memory requirements for a device are relatively high.
  • No interoperability between suppliers’ JMS stacks (unlike REST, MQTT and AMQP).

JMS makes sense for gateway to datacenter connnections, and within the datacenter.  JMS is by far the most widely used datacenter messaging stack within enterprises today, and the most widely embedded messaging API across the tools like analytics engines, process engines, and monitoring platforms.

If you have a well-established JMS footprint, it may make sense to continue – it’s proven, it’s easy and it requires the least change to existing systems. If you have a greenfield application, or your toolset can as easily support AMQP or JMS, many architects would choose AMQP over JMS today for reasons I’ll explain next.


AMQP

amqp-logoAdvanced Message Queueing Protocol is a wire-level binary protocol that allows any AMQP client to communicate with any other AMQP server, regardless of programming languages or platforms.  Although AMQP may not be suitable for sensor devices with limited memory, power or network bandwidth, it’s the only protocol viable for end-to-end use for select IoT use cases. For example, in Industrial IoT, such as factory machinery or SCADA systems where the device and its network are substantially capable.

Pros Cons
  • Support for most message exchange patterns including publish-subscribe, request-reply and message queue.
  • Support for all classes of service.
  • Support for detailed header fields such as TTL, replyTo and user properties.
  • Enables portable encoding of messages.
  • Supports both TCP and UDP.
  • Power, processing and memory requirements for a device are relatively high.
  • Its required header fields are rather long.

It is worth noting that one of the most popular APIs used with AMQP is JMS. This means that if you currently rely on tools that provide JMS integration at the API level, by choosing an AMQP protocol/broker accessible via JMS, you can migrate towards AMQP without recoding applications. I’ll write more about this important concept in the future – stay tuned.


REST

rest-logoRESTful interactions rely on HTTP methods, which means no client library is required on the client side. This could be useful for a very simple device/sensor that only requires one-way (outbound) communication because it means any service that can receive RESTful POSTs can receive data from that sensor. The trade-off is that you don’t get any of the behavior of a messaging protocol. If the server is unavailable or backlogged, data from the sensor will be lost, unless the sensor application handles buffering and retries in the application code. There are benefits to a messaging protocol in an end-to-end system like an IoT application which has previously been discussed above.

Pros Cons
  • Does not require a client library on the device.
  • Simplifies the architecture if device data loss is acceptable
  • Provides “lowest common denominator” connectivity, since most devices can use HTTP POST or GET.
  • Its header fields are relatively long (if network bandwidth matters).
  • No support for quality of service levels.
  • No support for varied message patterns.
  • The application needs to handle all reliability.

CoAP

coapConstrained Application Protocol is based on a subset of HTTP methods like REST, but adds limited quality of service and works with UDP only, not TCP. It was designed for constrained device connectivity in the early days of IoT’s emergence – it stands for “Constrained Application Protocol.” Since MQTT’s arrival as a standard, with its equal handling of constrained devices, and much broader feature set beyond that, few people are choosing CoAP for new efforts. You are likely to choose CoAP only if it is the embedded choice for a sensor device, and you must support an application that already uses it.

Pros Cons
  • Has the same API verbs and messaging patterns as REST over UDP.
  • Very fast device-to-device communication in UDP.
  • Has the same weaknesses as REST except for quality of service levels.
  • Offers “confirmable” and “non-confirmable” quality of service.
  • Can be used within a subnet only.
  • Supports only request-reply message exchange pattern (publish-subscribe is slated as a future feature).

DDS

ddsData Distribution Service was designed to connect devices to other devices with minimal overhead.  DDS implementations have direct device-to-device “data bus”. To use DDS, you create a set of topics, with their own data types. Instead of relying on a message broker, data publishers and consumers get matched through the data bus based on their types, topics and quality of service (QoS) parameters. Also it can run over UDP (multicast), TCP, shared memory, and other proprietary networks. Instead of relying on the transport layer for reliability, it has its own per-stream reliability protocol.

Pros Cons
  • More than 20 quality of service (QoS) parameters on data, covering durability, presentation, liveliness, resource limits, deadline, ownership, reliability, transport priority, lifespan, destination order and history.
  • UDP multicast scales well for device to device communications.
  • Its background “meta traffic” protocol enables automatic discovery of peers.
  • Has both wire-level and API specifications for many languages.
  • No support for guaranteed messaging.
  • No support for message queues.
  • Message routing is not part of the specification, but is an extension in implementations.

Building an End-to-End Strategy

  • Device to device communications

    Here TCP’s point-to-point streams often do not meet the requirements because its reliable data transmissions require multiple retries until an acknowledgment is received. For example, two cars travelling at 100 kms per hour that want to share data with each other don’t have the luxury of waiting for data or message to be acknowledged before each can act on the new data.  Each must make its best available decision with all available data from the other devices’ incoming data.

    That’s why a non-TCP transport layer such as UDP is desired here.  Among the protocols mentioned above, MQTT-SN, CoAP and DDS support UDP multicast. DDS’s data bus approach in matching the publishing and subscribing devices differs from the others’ approach because it does not rely on a typical hub and spoke message broker architecture: instead it relies on a data bus where the devices get discovered as peers and matched based on their data topic, type and QoS parameters. DDS’ approach is data-centric: it understands the data itself and message formats and has QoS access rules for filtering and delivery. This is quite a contrast to MQTT-SN and CoAP, which treat the body or content of a message as opaque and send the message to its destination based only on its header.

    That said, device to device use cases are in their infancy and will be for a while; the vast majority of use cases have devices communicating to gateways or datacenters. As IoT devices begin to tackle this problem, it is likely that we will see more protocol evolution to better handle existing and future requirements.

  • Device to gateway connections

    MQTT is best suited if a device or “thing” is very limited in its power, processing, memory or network capacity. AMQP may make sense if the device has sufficient computing resource and communications are not constrained. RESTful exchange is a necessary choice if the device is sufficiently simple that it can only support HTTP/TCP, or if you don’t need quality of service (i.e., if data loss is ok).

  • Gateway to data systems

    Although MQTT is probably not the best choice here due to its lack of message properties and lack of support for message queues, if it meets the application’s messaging requirements, it could be a good enough choice. JMS may be the right choice here if existing datacenter’s applications already use JMS as their messaging service. AMQP may be the best choice if there is no messaging service in place yet, or as a strategy to migrate JMS API supporting applications towards an open protocol to avoid vendor lock-in.

  • Between data systems in the datacenter or cloud

    The most important consideration for any messaging protocol in the datacenter will be to integrate seamlessly with the existing applications’ messaging service(s). Today this is most commonly JMS simply because it is so pervasive, although newer applications may use AMQP (possibly under a JMS API). There are many other protocols like IBM MQ, Kafka or many other vendor proprietary legacy brokers that are usually connected via protocol bridging. Also high availability (HA), disaster recovery (DR) and scalability as well as ease of deployment of a messaging solution that implements the protocols are very important considerations within the core datacenter or cloud applications.

In summary, each link in an IoT architecture has different needs and dynamics and most application requirements will likely lead you towards using multiple protocols within an end-to-end application. For any given link, your choice may be obvious based on your requirements, in which case you can just get on with it. If your pros and cons list makes the choice difficult, it is generally good advice to pick the most open protocol or API you can. It will maximize your options in the future as your application evolves.

Whichever protocol or protocols you pick, note that Solace technology can meet your message routing requirements thanks to broad protocol support and the ability to be deployed as a single HA cluster or a tiered deployment of message routers that supports millions of connections and messages per second.

 

Solace logo
Solace

Solace helps large enterprises become modern and real-time by giving them everything they need to make their business operations and customer interactions event-driven. With PubSub+, the market’s first and only event management platform, the company provides a comprehensive way to create, document, discover and stream events from where they are produced to where they need to be consumed – securely, reliably, quickly, and guaranteed.

Behind Solace technology is the world’s leading group of data movement experts, with nearly 20 years of experience helping global enterprises solve some of the most demanding challenges in a variety of industries – from capital markets, retail, and gaming to space, aviation, and automotive.

Established enterprises such as SAP, Barclays and the Royal Bank of Canada, multinational automobile manufacturers such as Renault and Groupe PSA, and industry disruptors such as Jio use Solace’s advanced event broker technologies to modernize legacy applications, deploy modern microservices, and build an event mesh to support their hybrid cloud, multi-cloud and IoT architectures.