Skip to content

Latest commit

 

History

History
60 lines (43 loc) · 6.24 KB

iot-edge-as-gateway.md

File metadata and controls

60 lines (43 loc) · 6.24 KB
title description author manager ms.author ms.date ms.topic ms.service services ms.custom
Gateways for downstream devices - Azure IoT Edge | Microsoft Docs
Use Azure IoT Edge to create a transparent, opaque, or proxy gateway device that sends data from multiple downstream devices to the cloud or processes it locally.
kgremban
philmea
kgremban
02/25/2019
conceptual
iot-edge
iot-edge
amqp
mqtt

How an IoT Edge device can be used as a gateway

Gateways in IoT Edge solutions provide device connectivity and edge analytics to IoT devices that otherwise wouldn't have those capabilities. Azure IoT Edge can be used to satisfy any need for an IoT gateway, whether it's related to connectivity, identity, or edge analytics. Gateway patterns in this article only refer to characteristics of downstream device connectivity and device identity, not how device data is processed on the gateway.

Patterns

There are three patterns for using an IoT Edge device as a gateway: transparent, protocol translation, and identity translation:

  • Transparent – Devices that theoretically could connect to IoT Hub can connect to a gateway device instead. The downstream devices have their own IoT Hub identities and are using any of the MQTT, AMQP, or HTTP protocols. The gateway simply passes communications between the devices and IoT Hub. Both the devices and the users interacting with them through IoT Hub are unaware that a gateway is mediating their communications. This lack of awareness means that the gateway is considered transparent. Refer to Create a transparent gateway for specifics on using an IoT Edge device as a transparent gateway.
  • Protocol translation – Also known as an opaque gateway pattern, devices that do not support MQTT, AMQP, or HTTP can use a gateway device to send data to IoT Hub on their behalf. The gateway understands the protocol used by the downstream devices, and is the only device that has an identity in IoT Hub. All information looks like it is coming from one device, the gateway. Downstream devices must embed additional identifying information in their messages if cloud applications want to analyze the data on a per-device basis. Additionally, IoT Hub primitives like twins and methods are only available for the gateway device, not downstream devices.
  • Identity translation - Devices that cannot connect to IoT Hub can connect to a gateway device, instead. The gateway provides IoT Hub identity and protocol translation on behalf of the downstream devices. The gateway is smart enough to understand the protocol used by the downstream devices, provide them identity, and translate IoT Hub primitives. Downstream devices appear in IoT Hub as first-class devices with twins and methods. A user can interact with the devices in IoT Hub and is unaware of the intermediate gateway device.

Diagram - Transparent, protocol, and identity gateway patterns

Use cases

All gateway patterns provide the following benefits:

  • Analytics at the edge – Use AI services locally to process data coming from downstream devices without sending full-fidelity telemetry to the cloud. Find and react to insights locally and only send a subset of data to IoT Hub.
  • Downstream device isolation – The gateway device can shield all downstream devices from exposure to the internet. It can sit in between an OT network that does not have connectivity and an IT network that provides access to the web.
  • Connection multiplexing - All devices connecting to IoT Hub through an IoT Edge gateway use the same underlying connection.
  • Traffic smoothing - The IoT Edge device will automatically implement exponential backoff if IoT Hub throttles traffic, while persisting the messages locally. This benefit makes your solution resilient to spikes in traffic.
  • Offline support - The gateway device stores messages and twin updates that cannot be delivered to IoT Hub.

A gateway that does protocol translation can also perform edge analytics, device isolation, traffic smoothing, and offline support to existing devices and new devices that are resource constrained. Many existing devices are producing data that can power business insights; however they were not designed with cloud connectivity in mind. Opaque gateways allow this data to be unlocked and used in an IoT solution.

A gateway that does identity translation provides the benefits of protocol translation and additionally allows for full manageability of downstream devices from the cloud. All devices in your IoT solution show up in IoT Hub regardless of the protocol they use.

Cheat sheet

Here is a quick cheat sheet that compares IoT Hub primitives when using transparent, opaque (protocol), and proxy gateways.

  Transparent gateway Protocol translation Identity translation
Identities stored in the IoT Hub identity registry Identities of all connected devices Only the identity of the gateway device Identities of all connected devices
Device twin Each connected device has its own device twin Only the gateway has a device and module twins Each connected device has its own device twin
Direct methods and cloud-to-device messages The cloud can address each connected device individually The cloud can only address the gateway device The cloud can address each connected device individually
IoT Hub throttles and quotas Apply to each device Apply to the gateway device Apply to each device

When using an opaque gateway (protocol translation) pattern, all devices connecting through that gateway share the same cloud-to-device queue, which can contain at most 50 messages. It follows that the opaque gateway pattern should be used only when few devices are connecting through each field gateway, and their cloud-to-device traffic is low.

Next steps

Learn how to set up a transparent gateway: