Neha Patil (Editor)

Scalable Reliable Multicast

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

Scalable Reliable Multicast protocol is a reliable multicast framework for light-weight sessions and application level framing. The algorithms of this framework are efficient, robust, and scale well to both very large networks and very large sessions. Wb, the distributed whiteboard tool designed and implemented by McCanne and Jacobson, is the first application based on the SRM framework.

Contents

Overview

SRM is heavily based on the group delivery model that is the centerpiece of the IP multicast protocol. It attempts to follow the core design principles of TCP/IP. It requires only the basic IP delivery model with possible duplication and reordering of packets and builds reliability on an end-to-end basis. The algorithms in SRM dynamically adjust their control parameters based on the observed performance within a session like TCP adaptively setting timers or congestion control windows.

Components

It has three major components, multicast, reliability and scalability.

Multicast

It provides an efficient means to transmit data to multiple parties. A single copy of the packet travels down any given network link, and is duplicated at network branch points.

Reliability

It is based on loss detection and re-transmission policy. Since sender-oriented reliability may lead to ACK implosion, it uses receiver-based reliability.It does not focus on any particular delivery order.

Scalability

This is an issue in many reliable multicast protocols because of state explosion and message implosion effect. SRM uses various approaches like polling, hierarchy, suppression, etc, to achieve scalability.

References

Scalable Reliable Multicast Wikipedia