Mega-Merger

From Wikipedia, the free encyclopedia

Mega-merger is a distributed algorithm aimed at solving the election problem in generic connected undirected graph.[1][2]

Introduction[edit]

Mega-Merger was developed by Robert Gray Gallager at MIT in 1983. It applies a distributed divide and conquer approach mixed with a rank-based conquer strategy. The algorithm is usually presented through a village-city analogy. Each node in the graph indicates a village, while the edges that connect them are the roads and a rooted spanning tree in a sub-graph is a city. The whole graph is then a mega-city. Mega-Merger pushes villages to bind together to form cities according to each other's rank and edges. Cities are then formed by alliances or by conquering/absorption.

Pre-requisites[edit]

Mega-Merger builds a minimum spanning tree over connected graphs provided:

  • Total reliability: No message is lost in transmission.
  • UI (unique initiator): A single node starts the protocol.
  • Bi-directional communications channels: Each edge is bi-directional, communications can travel in both directions.

No further restrictions are necessary.

Algorithm[edit]

The algorithm assigns to each village a name and a rank, the former usually unique. The latter states the number of friendly mergers that the city has gone through, and the larger it is, the more powerful a city is considered. Moreover, to each edge is assigned a weight: each village/city has a minimum-weight edge also called merge link, that is the edge whose traversal has minimum cost.

The algorithm proceeds in consecutive stages until a mega-city is formed. Each city C computes its own merge link and sends a request for merging across . The request is handled by in the following ways:

  1. Friendly merge: : If the cities share the same merge link and have same rank, a friendly merge occurs, and the two cities merge into one. A new name is picked for the newly created city, a ruling village is picked and the path from the previous ruler to the node in the merge link is re-oriented such that it leads to the new leader. The new city also has its rank increased by one. Notice as this is the only way two cities can increase each other's rank.
  2. Absorption: : If the requesting city has a lower rank, the city in the receiving end enacts an absorption process: is absorbed like in the friendly merge, but loses its name and the resulting city has the rank of .
  3. Suspension: : In such cases freezes the request: it waits to either be absorbed by rule 2 or to merge and increase its rank above the one of in order to be able to enact rule 1 and absorb .

Outside messages[edit]

No nodes in the graph have a list of villages belonging to their village, hence each time a city wants to look for edges leading outside of it, it has to adopt an ask-reply protocol. The city ruler sends a broadcast message through its spanning tree, and each node receiving it sends requests to its neighbors, excluding the edges to its child(ren) and parent. The response protocol is as follows:

  • : clearly the edge is an intra-edge in . and exchange negative responses.
  • : is asking to a city of higher rank. By rule 2 we can assert that no absorption occurs, and indeed belongs to another city.
  • : in this case will delay the answer as by rule 3.

Properties[edit]

Mega-Merger holds several properties:

  • Monotonic rank: Each city , mega-city excluded, will eventually rise in rank. By rule 1 could friendly merge, raising its rank by ; by rule 2 and 3 will have a merge link (by hypothesis is not the mega-city) it will either ask a higher-rank city , getting absorbed and increasing its rank, or wait until reaches its level and operate a friendly merge.
  • : we have a level increase each time a friendly merge is operated. We compute by induction: on the base case, , exactly one village is in . On the inductive case, two cities operate a friendly merge, hence by inductive hypothesis.
  • : by the previous rule cities are built up on an exponential base , hence the inverse .
  • Deadlock prevention: Mega-Merger doesn't incur in any deadlock. As shown by rule 3 a city can wait for a lower-rank city to answer on merge link : in order to incur in a deadlock such city would have to wait on , and on , and so on until a cycle is detected on waiting on on a merge link . But by hypothesis is the merge-link of , hence such chain cannot exist. The other deadlock-inducing situation is a request from to where has a different merge link than . Still, as shown by monotonic rank either will grow its rank to absorb , or will consume all its merge links to be the only city in the graph with . Trivially in such case the two merge links would coincide and would be forced into absorption by rule 2.

Termination[edit]

Termination is granted by deadlock prevention and total reliability.

Cost[edit]

The cost analysis has two components, the stage-cost and the stage upper-bound. A city enacts a stage by requesting a merge link from its villages and applying one of the above rules according to the desired situation. We can divide this stage in five steps:

  1. Broadcast request for merge link to the nodes in the tree.
  2. Each node forwards an message to its neighbors and waits for their answers.
  3. The nodes then send the answers back to the city ruler by convergecast for a total of messages.
  4. The root then decides on a merge link and sends a message to the elected node. Trivially this message will need to travel nodes.

These five phases of request, outside discovery, communication and delivery have a total cost of . As for the wasted messages in the between internal nodes, each node has at most internal edges, or if is a leaf, for a total of wasted internal messages.

Now for the number of stages. By the previously presented property on the cities size, each city of level has , hence the largest reachable rank is . Since cities can merge/be absorbed only once per stage, we have a total of total messages.

Correctness[edit]

Mega-Merger creates a minimum spanning tree by merging sub-trees through the minimum cost path, i.e. the merge link. By definition of minimum spanning tree, a minimum spanning tree is a set of minimum spanning trees connected through minimum-cost paths. By construction Mega-Merger forwards a request through its merge-link, and that sooner or later that edge is going to be part of the tree by deadlock prevention.

References[edit]

  1. ^ Gallager, Robert (1983). "A distributed algorithm for minimum spanning tree" (PDF). Massachusetts Institute of Technology.
  2. ^ Awerbuch, Baruch (1987). "Optimal Distributed Algorithm for Minimum Weight Spanning Tree, Counting, Leader Election and Other Problems" (PDF). SIAM Journal on Computing.