Design World

  • Home
  • Articles
    • 3D CAD
    • Electronics • electrical
    • Fastening & Joining
    • Factory automation
    • Linear Motion
    • Motion Control
    • Test & Measurement
    • Sensors
  • 3D CAD Models
    • PARTsolutions
    • TraceParts
  • Leadership
    • 2020 Winners
    • 2019 Winners
    • 2020 LEAP Awards
  • Resources
    • DIGITAL ISSUES
      • EE World Digital Issues
    • Future of Design Engineering
    • 2020 LEAP Awards
    • MC² Motion Control Classroom
    • Motion Design Guide Library
    • Podcasts
    • Suppliers
    • Webinars
  • Women in Engineering
  • Ebooks / Tech Tips
  • Videos
  • Subscribe
  • COVID-19

MQTT: Mission-critical fault tolerance

By Sponsored Content | June 17, 2020

Share

Our MQTT series continues with a deep dive into groov EPIC’s (and now groov RIO’s) features for high-reliability MQTT networks.

Part 1 – MQTT: Basic publishing with groov EPIC
Part 2 – MQTT: Faster, better with Sparkplug B

At its heart, MQTT was designed for unreliable networks. Back in the ’90s, ConocoPhillips (now Phillips 66) was looking for a way to improve telemetry reporting over its low-bandwidth dial-up and costly VSAT (small satellite dish) SCADA network. IBM partnered with system integrator Arcom Control Systems (now Cirrus Link Solutions) to develop a minimalist communication protocol that could gracefully handle intermittent network outages and high latency among many distributed devices over TCP/IP.

Jumping ahead 20 years, MQTT had caught on in the IT world as a flexible, efficient transport for IoT data, but these applications didn’t necessarily take advantage of MQTT’s rigorous state management and data integrity features. Cirrus Link knew that for MQTT to thrive in an industrial environment, reliability was critical, and it developed the Sparkplug B specification, in part, to address that need.

If you’re just starting this series, I suggest you go back to parts 1 and 2 and familiarize yourself with groov EPIC’s MQTT clients and the advantages of the Sparkplug B spec. In this post, I will go deeper into the security, history, and redundancy features that the groov Manage and Ignition Edge clients provide and how they work with Sparkplug B payloads to make MQTT networks even more resilient.

Bonus: The groov Manage client on groov RIO provides all the same MQTT functions described in this series. Read on, groov RIO users!

Security

Cyber threats pose a risk to otherwise stable systems, but fortunately, groov EPIC and MQTT make it easier to protect your data.

Rather than complicating the protocol with its own security mechanisms, MQTT takes advantage of the SSL/TLS encryption built into the TCP/IP stack. Assuming your broker supports it, you can enable encrypted communications in either groov Manage or Ignition Edge by first replacing the protocol and port designations in your broker address. For my broker, rather than using

tcp://mqtt.groov.com:1883

I would use

ssl://mqtt.groov.com:8883

In groov Manage, under the MQTT > Configuration > Broker sub-menu, you would also enable the “SSL” option and select the appropriate “CA certificate.” Here is what those changes look like:

If you haven’t dealt with certificates of trust before, they’re an important part in generating encryption keys and in verifying that your EPIC is communicating with the right endpoint. The certificate is created by the MQTT server and distributed by the network administrator for use on trusted edge devices, like EPIC. For more information, check out this post from our series on groov EPIC security.

To upload a security certificate to your groov EPIC, go to the Security > Client SSL menu. Once done, the certificate file appears as an option in the MQTT Broker > Select Certificate dialog box. The groov EPIC User’s Guide has more information on certificate creation and management.

If you’re using groov EPIC’s Ignition Edge MQTT client, here’s what those same changes would look like in the MQTT Transmission module settings:

If you’re concerned about how SSL/TLS affects MQTT’s performance, take a look at this benchmark report from Hive MQ. It concludes that while encryption impacts performance on connection, it makes little difference during sustained use.

History

In the event of a disconnection, plain-vanilla MQTT offers quality-of-service levels that can guarantee message delivery at the expense of the additional traffic used for handshaking. However, only the most recent message is delivered on reconnect. Sparkplug B provides a different mechanism that minimizes data loss.

Since Sparkplug B decorates MQTT messages with metadata, SpB clients are able to flag certain messages as historical records. If groov EPIC loses connection with its broker, groov Manage can store records in RAM, then forward them to the broker when the connection is restored.

In groov Manage you’ll enable this feature in the MQTT > Configuration > Device sub-menu by plugging a number into the “Historic Queue” field. We recommend a queue size of 3,600 to strike a balance between storage and performance, but you could go much higher depending on the rate of data production:

Store-and-forward is even better with the Ignition Edge client, which offers larger capacity and a non-volatile storage option. If you select the disk-backed option, you get the additional benefit of groov EPIC’s power-fail-safe file system and industrial SSD.

To enable historization in Ignition Edge, go to MQTT Transmission > History and edit the “Default In-Memory Store.” Select “Enable this History Store” and change “Type” to “Disk-Backed.” (I’m also going to change the name of the history store to reflect these changes.)

You can also adjust the history capacity here if you want. The default setting will buffer up to 100,000 records for 1 week. Wow.

Once that part is done, go back to the MQTT Transmission > Settings menu and select the “Transmitters” tab. Scroll down and set “History Store” to the name of the store you just enabled (“Default Store” in my case).

Note: To get the full advantage of store-and-forward history, you’ll need to be communicating with an in-network MQTT subscriber that is watching for these historical records. Currently, the Ignition MQTT Engine module and the Canary Labs MQTT Sparkplug B Data Collector both do.

As the popularity of MQTT continues to grow, we expect to see support for this and other creative uses of Sparkplug B added to other SCADA packages and historians as well.

Redundancy

Another basic fault tolerance measure is to set up multiple MQTT brokers and configure your groov EPIC with connections to each.

To set this up in groov Manage, navigate to MQTT > Configuration > Add Broker, and create as many connections as you want.

In the image above, along with my connection to Opto 22’s on-site Mosquitto broker, I’ve added a second connection to our Chariot broker hosted on AWS.

If you’re using the Ignition Edge MQTT client, setting up redundancy is just as straightforward as with groov Manage. Add new server connections from the MQTT Transmission > Settings > Servers tab. Any broker connections that share the same “Server Set” property become part of an automatic failover group.

Ignition Edge allows you to create additional failover groups under the “Sets” tab. For advanced scenarios where you might group MQTT clients around specific brokers, you can create additional MQTT clients, each with its own server set and history store, by defining “Custom Transmitter Settings” under the “Transmitters” tab.

Primary Host

The “Primary Host ID” property in groov Manage and Ignition Edge gets a special mention because it applies to several of the features we’ve already discussed and shows off another benefit of the Sparkplug B spec.

Normally, when using redundant connections, an MQTT client will connect to the first available broker and switch round-robin if it loses connection. In the case that you’re sending data to a back-end client like a SCADA, historian, or IoT system, an SpB-compatible client can improve performance by allowing you to designate that system as the primary host application.

With a primary host designation, if either groov EPIC or the back-end client loses its connection to the current broker, EPIC will rotate through available connections until it finds the back-end client again. If you’re using the store-and-forward history queue, EPIC will begin storing up records as soon as that connection goes down and continue until it can deliver its records to the target application.

To designate a primary host application in groov Manage, go to the main MQTT configuration screen and set the “Primary Host ID” to the MQTT client ID of your target application.

For example, the Ignition SCADA server running on my laptop (not Ignition Edge, but full Ignition), has a client ID of laptop-ignition-scada, so I would enter that as the “Primary Host ID” in groov Manage:

In Ignition Edge, a redundant broker failover group, called a Server Set, can designate a “Primary Host ID” as well. This is found under the “Sets” tab.

When you designate a primary host, be aware that MQTT will prefer a connection to the back-end client over a connection to the broker. If none of the available broker connections are publishing an ONLINE status for the primary host, the MQTT client will not stay connected until one does.

Trade-offs and considerations

Sparkplug B provides an efficient standard for reliable, interoperable industrial communications. groov EPIC and groov RIO provide a secure OT platform for building fault-tolerant MQTT Sparkplug B data systems. At no additional cost, groov Manage offers essential features for security, store-and-forward historization, and redundancy. Free to try, and only a little more to license, Ignition Edge takes these features up a notch with disk-backed storage and more options for scaling up your infrastructure.

As you consider which option is right for you, remember that groov Manage is better suited for tag counts under 1000, so if you have a larger system, Ignition Edge will be the best option. With groov EPIC, you can take advantage of either option to design systems that deliver high uptime, data integrity, and resistance to cyberattack.

groov Manage with Sparkplug B Ignition Edge
Platform groov EPIC
groov RIO
groov EPIC
Data sources PAC Control tags and I/O PAC Control tags and I/O, legacy PLCs, devices, or OPC tags
Tag Count Medium High
Subscribe to other publishers’ topics No Yes (w/ MQTT Engine)
Security User authentication
SSL/TLS encryption
Security certificates
User authentication
SSL/TLS encryption
Security certificates
Client-side certificates
Historization Volatile storage
Max 65K records
Non-volatile storage (optional)
100K records or 1 week
Redundancy Multiple brokers
Primary host designation
Multiple brokers
Multiple failover groups
Multiple clients
Primary host designation
Cost None $800*
+$200** w/ MQTT Engine

* GROOV-LIC-EDGE current list pricing as of 6/10/20; ** special pricing when purchased with Ignition Edge License

Next time we bring it all together…

Now that we have a secure, reliable foundation for data sharing, we can look at the big-picture architecture that lets MQTT networks scale to industrial levels, including legacy system integration. For a sneak preview, check out our recent webinar with Inductive Automation and Cirrus Link: Ignition Community Live with Cirrus Link: MQTT Workshop.

MOTION DESIGN GUIDES

“motion

“motion

“motion

“motion

“motion

Enews Sign Up

Motion Control Classroom

Design World Digital Edition

cover

Browse the most current issue of Design World and back issues in an easy to use high quality format. Clip, share and download with the leading design engineering magazine today.

EDABoard the Forum for Electronics

Top global problem solving EE forum covering Microcontrollers, DSP, Networking, Analog and Digital Design, RF, Power Electronics, PCB Routing and much more

EDABoard: Forum for electronics

Sponsored Content

  • With virtual commissioning, commissioning time and prototype waste is reduced
  • Master Bond Supreme 10HT High Strength, NASA Low Outgassing Approved Epoxy
  • Optimize, streamline and increase production capacity with pallet-handling conveyor systems
  • Drilling Rig OEM Benefits from a PLC with Edge Computing Technology: IIoT Case Study
  • #1 Reason for Retaining Ring Failure & How to Overcome It
  • Motion controllers: design from scratch or buy ready-made?
Engineering Exchange

The Engineering Exchange is a global educational networking community for engineers.

Connect, share, and learn today »

Tweets by @DesignWorld
Design World
  • Advertising
  • About us
  • Contact
  • Manage your Design World Subscription
  • Subscribe
  • Design World Digital Network
  • Engineering White Papers
  • LEAP Awards

Copyright © 2021 WTWH Media, LLC. All Rights Reserved. The material on this site may not be reproduced, distributed, transmitted, cached or otherwise used, except with the prior written permission of WTWH Media. Site Map | Privacy Policy | RSS

Search Design World

  • Home
  • Articles
    • 3D CAD
    • Electronics • electrical
    • Fastening & Joining
    • Factory automation
    • Linear Motion
    • Motion Control
    • Test & Measurement
    • Sensors
  • 3D CAD Models
    • PARTsolutions
    • TraceParts
  • Leadership
    • 2020 Winners
    • 2019 Winners
    • 2020 LEAP Awards
  • Resources
    • DIGITAL ISSUES
      • EE World Digital Issues
    • Future of Design Engineering
    • 2020 LEAP Awards
    • MC² Motion Control Classroom
    • Motion Design Guide Library
    • Podcasts
    • Suppliers
    • Webinars
  • Women in Engineering
  • Ebooks / Tech Tips
  • Videos
  • Subscribe
  • COVID-19