Rahul Sharma (Editor)

Reliable multicast

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

A reliable multicast protocol is a computer networking protocol that provides a reliable sequence of packets to multiple recipients simultaneously, making it suitable for applications like multi-receiver file transfer or streaming media.

Contents

Overview

Multicast is a network addressing method for the delivery of information to a group of destinations simultaneously using the most efficient strategy to deliver the messages over each link of the network only once, creating copies only when the links to the multiple destinations split (typically network switches and routers). However, like the User Datagram Protocol, multicast does not guarantee the delivery of a message stream. Messages may be dropped, delivered multiple times, or delivered out of order. A reliable multicast protocol adds the ability for receivers to detect lost and/or out-of-order messages and take corrective action (similar in principle to TCP), resulting in a gap-free, in-order message stream.

Reliability

The exact meaning of reliability depends on the specific protocol instance. A minimal definition of reliable multicast is eventual delivery of all the data to all the group members, without enforcing any particular delivery order. However, not all reliable multicast protocols ensure this level of reliability; many of them trade efficiency for reliability, in different ways. For example, while TCP makes the sender responsible for transmission reliability, multicast NAK-based protocols shift the responsibility to receivers: the sender never knows for sure that all the receivers have in fact received all the data. RFC 2887 explores the design space for bulk data transfer, with a brief discussion on the various issues and some hints at the possible different meanings of reliable.

Existing or proposed protocols

  • Pragmatic General Multicast (PGM)
  • (Mesongo)'s Rapid Messaging Framework (RMF)
  • Tibco Software's TRDP (part of RV). Note: when Tibco acquired Talarian, they inherited a PGM implementation with SmartSockets (SmartPGM). TRDP pre-dates the development of SmartPGM
  • Reuters Reliable Control Protocol (RRCP) part of TRIARCH, RMDS and TREP
  • 29West's LBT-RM protocol (part of LBM/UME)
  • PrismTech's OpenSplice DDS ([1]) reliable real-time multicast protocol
  • DDSI a standard high performance reliable multicast protocol ([2])
  • RTI's reliable multicast protocol (part of NDDS)
  • OpenDDS as an open source implementation since their 0.12 release
  • Reliable Multicast Transport Protocol (RMTP)
  • Scalable Reliable Multicast (SRM)
  • QuickSilver Scalable Multicast (QSM)
  • SMART Multicast (Secure Multicast for Advanced Repeating of Television)
  • NACK-Oriented Reliable Multicast Protocol (NORM)
  • Reliable Stream Protocol (RSP), a high-performance open source protocol for compute clusters
  • Library support

  • JGroups (Java API): popular project/implementation
  • jGCS : Generic Java API supporting other implementations: Spread, Appia, NeEM, JGroups
  • Spread: C/C++ API, Java API, Python API
  • Appia (Java API)
  • NeEM (Java API)
  • RMF (C# API)
  • Aeron C++ and Java API
  • References

    Reliable multicast Wikipedia