Star

ThingsBoard Architecture

ThingsBoard is designed to distribute workload across multiple nodes without a single point of failure. Each ThingsBoard node is identical and can handle request from both device and server-side applications.

High-level overview

image

Device Connectivity

ThingsBoard supports MQTT, CoAP and HTTP protocols for device connectivity. It is possible to plugin support of different protocols or customize existing implementations.

Rule Engine

ThingsBoard Rule Engine allows to process messages from devices and trigger configurable processing modules called Plugins.

Core Services

ThingsBoard contains set of core services that allow managing the following entities:

Rules are able to invoke a certain subset of this APIs. For example, a rule can create an alarm for certain device.

Server-side API Gateway

Every ThingsBoard server provides REST API for registered users. System Telemetry service allows to manage attributes and fetch timeseries data using websockets and REST API. System RPC service provides REST API to push custom commands to devices. Learn more about ThingsBoard REST APIs here

Actor model

Actor model enables high performance concurrent processing of messages from devices as long as server-side API calls. ThingsBoard uses own Actor System implementation (sharpened for our use cases) with following actor hierarchies.

image

The brief description of each actor’s functionality is listed below:

Clustering mode

Service Discovery

ThingsBoard uses Zookeeper for service discovery. All ThingsBoard nodes are identical and registered as ephemeral in Zookeeper. Apache Curator path cache receipt is used to keep track of all available sibling nodes.

Consistent Hashing

ThingsBoard adopts consistent hashing to ensure scalability and availability. Message from Device A that is received on a particular node may be forwarded to the other node based on the hash of the device ID. Although this introduces certain networking overhead, it allows to process all messages from a particular device using corresponding device actor on a determined server, which introduces the following advantages:

The illustration below demonstrates how ThingsBoard handles RPC request to Device D1. In this case, the request arrives at Server A, but D1 is connected using MQTT to Server C. In the worst-case scenario, D1 Device Actor will be located on another server B that obviously does not match either A or C.

image

Security

Transport encryption

As a system administrator, you are able to configure ThingsBoard to use secure sockets layer for HTTP(s) and MQTT transports. DTLS for CoAP is not supported yet.

Device authentication

ThingsBoard is designed to support many types of device credentials. Current release provides support of token based credentials for all protocols and support of X.509 certificate based credentials for MQTT protocol. See MQTT over SSL guide for more details.

Third-party tools

ThingsBoard uses following main third-party projects: