Data Distribution Service


The Data Distribution Service for real-time systems is an Object Management Group machine-to-machine standard that aims to enable dependable, high-performance, interoperable, real-time, scalable data exchanges using a publish–subscribe pattern.
DDS addresses the needs of applications like aerospace and defense, air-traffic control, autonomous vehicles, medical devices, robotics, power generation, simulation and testing, smart grid management, transportation systems, and other applications that require real-time data exchange.

Architecture

Model

DDS is a networking middleware that simplifies complex network programming. It implements a publish–subscribe pattern for sending and receiving data, events, and commands among the nodes. Nodes that produce information create "topics" and publish "samples". DDS delivers the samples to subscribers that declare an interest in that topic.
DDS handles transfer chores: message addressing, data marshalling and de-marshalling, delivery, flow control, retries, etc. Any node can be a publisher, subscriber, or both simultaneously.
The DDS publish-subscribe model virtually eliminates complex network programming for distributed applications.
DDS supports mechanisms that go beyond the basic publish-subscribe model. The key benefit is that applications that use DDS for their communications are decoupled. Little design time needs be spent on handling their mutual interactions. In particular, the applications never need information about the other participating applications, including their existence or locations. DDS transparently handles message delivery without requiring intervention from the user applications, including:
DDS allows the user to specify quality of service parameters to configure discovery and behavior mechanisms up-front. By exchanging messages anonymously, DDS simplifies distributed applications and encourages modular, well-structured programs.
DDS also automatically handles hot-swapping redundant publishers if the primary fails. Subscribers always get the sample with the highest priority whose data is still valid. It automatically switches back to the primary when it recovers, too.

Interoperability

Both commercial and open-source software implementations of DDS are available. These include application programming interfaces and libraries of implementations in Ada, C, C++, C#, Java, Python, Scala, Lua, Pharo and Ruby.
DDS vendors participated in interoperability demonstrations at the OMG Spring technical meetings from 2009 to 2013.
During demos, each vendor published and subscribed to each other's topics using a test suite called the shapes demo. For example, one vendor publishes information about a shape and the other vendors can subscribe to the topic and display the results on their own shapes display. Each vendor takes turns publishing the information and the other subscribe.
Two things made the demos possible: the DDS-I or Real-Time Publish-Subscribe protocol, and the agreement to use a common model.
In March 2009, three vendors demonstrated interoperability between the individual, independent products that implemented the OMG Real-time Publish-Subscribe protocol version 2.1 from January 2009. The demonstration included the discovery of each other's publishers and subscribers on different OS Platforms and supported multicast and unicast network communications.
The DDS interoperability demonstration used scenarios such as:
Development of the DDS specification started in 2001. It was developed by Real-Time Innovations, a US government contractor, and Thales Group, a French defense company. In 2004, the Object Management Group published DDS version 1.0. Version 1.1 was published in December 2005, 1.2 in January 2007, and 1.4 in April 2015.
DDS is covered by several US patents, among others.
The DDS specification describes two levels of interfaces:
Other related standards followed the initial core document.
The Real-time Publish-Subscribe Wire Protocol DDS Interoperability Wire Protocol Specification ensured that information published on a topic using one vendor's DDS implementation is consumable by one or more subscribers using the same or different vendor's DDS implementations. Although the specification is targeted at the DDS community, its use is not limited. Versions 2.0 was published in April 2008, version 2.1 in November 2010, 2.2 in September 2014, and 2.3 in May 2019.
DDS for Lightweight CCM offers an architectural pattern that separates the business logic from the non-functional properties. A 2012 extension added support for streams.
A Java 5 Language PSM for DDS defined a Java 5 language binding, referred to as a Platform Specific Model for DDS. It specified only the Data-Centric Publish-Subscribe portion of the DDS specification; Additionally, it encompasses the DDS APIs introduced by DDS-XTypes and DDS-CCM.
DDS-PSM-Cxx defines the ISO/IEC C++ PSM language binding, referred to as a Platform Specific Model for DDS. It provides a new C++ API for programming DDS that is more natural to a C++ programmer.
The specification provides mappings for the application programming interface specified in DDS-XTypes, and accessing quality of service profiles specified in DDS-CCM.
Extensible and Dynamic Topic Types for DDS provided support for data-centric publish-subscribe communication where topics are defined with specific data structures. To be extensible, DDS topics use data types defined before compile time and used throughout the DDS global data space. This model is desirable when static type checking is useful.
A Unified Modeling Language profile specified DDS domains and topics to be part of analysis and design modeling. This specification also defined how to publish and subscribe objects without first describing the types in another language, such as XML or OMG IDL.
An interface definition language was specified in 2014 independently from the Common Object Request Broker Architecture specification chapter 3. This IDL 3.5 was compatible with the CORBA 3 specification, but extracted as its own specification allowing it to evolve independently from CORBA.
Starting with DDS version 1.4 in 2015, the optional DLRL layer was moved to a separate specification.