Sale!

CS69011: Computing Lab 1 Assignment 5

$30.00 $18.00

Category: You will Instantly receive a download link for .zip solution file upon Payment || To Order Original Work Click Custom Order?

Description

5/5 - (7 votes)

Leader Election is a common problem in distributed computing. For example, in a distributed database if the
process coordinating a distributed transaction dies, then the remaining participating processes may elect a new
transaction coordinator. There are many problems which require a leader to be elected to coordinate some activity
among a set of processes.
In this exercise, we shall consider leader election among a set of agents arranged in the form of a given tree, where
the vertices represent the agents (to be modeled by processes) and the edges represent bi-directional pipes through
which the two agents who are incident on an edge may communicate. The format of the tree has been provided
later. You have to read the tree structure and create the network of processes by repeated forking.
Each agent has an identifier (an integer), which is also specified in the tree structure (you should not confuse this
ID with the process ID of the process representing that agent). The leader election algorithm is as follows:
The algorithm elects the agent having the minimum identifier as the leader. At the end, each agent is aware of the
leader, including the leader itself of course.
The figure on the left shows the process tree (with edges from children to parent). Once the leader is identified,
the agents may redefine their parents so as to point towards the leader (shown on the right). Note that the process
hierarchy remains the same, the red links are maintained by the agents to remember the direction to the leader.
The structure of the process tree is provided as an input, read by the root process. The input consists of a list of
edges of the form á node, parent ñ. For the figure shown above, the tree may be specified as:
7,5
4,5
6,2
8,7
5,9
2,9
Bidirectional pipes must be created for each of these process pairs. Once the process network is constructed, we
will assume that the nodes do not know the structure, nor the IDs of the agents other than its own.

Task-1:
Develop a mechanism for creating the process network for a given input and the set of pipes. Then run the leader
election algorithm. At the end of this algorithm, each process, J, must write the identity of the leader, K, using the
following statement:
I am agent J and my leader is K
Task-2:
Now the leader wants to find out the sum of the IDs of the agents. Use a variant of the previous algorithm to
perform this task. At the end, the leader must print the sum of the IDs of the agents.
Task-3:
Finally, the leader asks each process to terminate. Each process announces its intention to terminate just before
termination. Each parent in the process hierarchy must wait for its children to terminate before announcing its
own intention for termination.