You are on page 1of 2

11/24/23, 10:39 PM Lamport's Algorithm for Mutual Exclusion in Distributed System - GeeksforGeeks

Lamport’s Algorithm for Mutual Exclusion in Distributed System

Prerequisite: Mutual exclusion in distributed systems

Lamport’s Distributed Mutual Exclusion Algorithm is a permission based algorithm proposed by Lamport as

Aptitudean Engineering
illustration of his synchronization
Mathematics scheme Operating
Discrete Mathematics for distributed
System systems. In permission
Courses @30% Off DBMS based timestamp
Computer Networks is Digital
used Logic
to and De
order critical section requests and to resolve any conflict between requests. In Lamport’s Algorithm critical
section
ReadrequestsDiscuss
are executedCourses
in the increasing order of timestamps i.e a request with smaller timestamp will be
given permission to execute critical section first than a request with larger timestamp. In this algorithm:

Three type of messages ( REQUEST, REPLY and RELEASE) are used and communication channels are
assumed to follow FIFO order.
A site send a REQUEST message to all other site to get their permission to enter critical section.
A site send a REPLY message to requesting site to give its permission to enter the critical section.
A site send a RELEASE message to all other site upon exiting the critical section.
Every site Si, keeps a queue to store critical section requests ordered by their timestamps. request_queuei
denotes the queue of site Si
A timestamp is given to each critical section request using Lamport’s logical clock.
Timestamp is used to determine priority of critical section requests. Smaller timestamp gets high priority
over larger timestamp. The execution of critical section request is always in the order of their timestamp.

Algorithm:

To enter Critical section:


When a site Si wants to enter the critical section, it sends a request message Request(tsi, i) to all other
sites and places the request on request_queuei. Here, Tsi denotes the timestamp of Site Si
When a site Sj receives the request message REQUEST(tsi, i) from site Si, it returns a timestamped REPLY
message to site Si and places the request of site Si on request_queuej
To execute the critical section:
A site Si can enter the critical section if it has received the message with timestamp larger than (tsi, i)
from all other sites and its own request is at the top of request_queuei
To release the critical section:
When a site Si exits the critical section, it removes its own request from the top of its request queue and
sends a timestamped RELEASE message to all other sites
When a site Sj receives the timestamped RELEASE message from site Si, it removes the request of Si from
its request queue

Message Complexity: Lamport’s Algorithm requires invocation of 3(N – 1) messages per critical section
execution. These 3(N – 1) messages involves

(N – 1) request messages
(N – 1) reply messages
(N – 1) release messages

Drawbacks of Lamport’s Algorithm:

Unreliable approach: failure of any one of the processes will halt the progress of entire system.
High message complexity: Algorithm requires 3(N-1) messages per critical section invocation.

Performance:

Synchronization delay is equal to maximum message transmission time


It requires 3(N – 1) messages per CS execution.
Algorithm can be optimized to 2(N – 1) messages by omitting the REPLY message in some situations.

Advantages of Lamport’s Algorithm for Mutual Exclusion in Distributed System:

https://www.geeksforgeeks.org/lamports-algorithm-for-mutual-exclusion-in-distributed-system/?ref=lbp 1/4
11/24/23, 10:39 PM Lamport's Algorithm for Mutual Exclusion in Distributed System - GeeksforGeeks

1. Simplicity: Lamport’s algorithm is relatively easy to understand and implement compared to other
algorithms for mutual exclusion in distributed systems.
2. Fairness: The algorithm guarantees fairness by providing a total order of events that is used to determine the
next process that can enter the critical section.
3. Scalability: Lamport’s algorithm is scalable because it only requires each process to communicate with its
neighbors, rather than all other processes in the system.
4. Compatibility: The algorithm is compatible with a wide range of distributed systems and can be adapted to
different network topologies and communication protocols.

Disadvantages of Lamport’s Algorithm for Mutual Exclusion in Distributed System:

1. Message Overhead: The algorithm requires a lot of message passing between processes to maintain the
total order of events, which can lead to increased network traffic and latency.
2. Delayed Execution: The algorithm can lead to delays in the execution of critical sections because a process
may have to wait for messages to arrive from other processes before entering the critical section.
3. Limited Performance: The algorithm may not perform well in systems with a high number of processes
because of the increased message overhead and delayed execution.
4. No Fault Tolerance: The algorithm does not provide any fault tolerance mechanism, which means that if a
process fails or crashes, it may cause the entire system to fail or become unstable.

FAQs:

How does Lamport’s algorithm ensure mutual exclusion in a distributed system?


Lamport’s algorithm uses a permission-based approach and timestamps to order critical section requests and
resolve any conflicts between them. Each process sends a request message to all other processes to enter the
critical section, and the request is placed in the request queue of each process in the order of its timestamp. A
process can enter the critical section if it has received a reply message from all other processes with a
timestamp greater than its own, and its own request is at the top of its request queue.

What is the message complexity of Lamport’s algorithm?


Lamport’s algorithm requires 3(N-1) messages per critical section execution, where N is the number of
processes in the system. These messages involve (N-1) request messages, (N-1) reply messages, and (N-1)
release messages.

Is Lamport’s algorithm fault-tolerant?


No, Lamport’s algorithm does not provide any fault tolerance mechanism. If a process fails or crashes, it may
cause the entire system to fail or become unstable.

Unlock the Power of Placement Preparation!


Feeling lost in OS, DBMS, CN, SQL, and DSA chaos? Our Complete Interview Preparation Course is the ultimate
guide to conquer placements. Trusted by over 100,000+ geeks, this course is your roadmap to interview
triumph.
Ready to dive in? Explore our Free Demo Content and join our Complete Interview Preparation course.

Last Updated : 12 May, 2023 39

Similar Reads
Maekawa’s Algorithm for Mutual Exclusion in Ricart–Agrawala Algorithm in Mutual
Distributed System Exclusion in Distributed System

Suzuki–Kasami Algorithm for Mutual Mutual exclusion in distributed system


Exclusion in Distributed System

Performance Metrics For Mutual Exclusion Peterson's Algorithm for Mutual Exclusion |
Algorithm Set 1 (Basic C implementation)

Peterson's Algorithm for Mutual Exclusion | Mutual Exclusion in Synchronization


Set 2 (CPU Cycles and Memory Fence)

https://www.geeksforgeeks.org/lamports-algorithm-for-mutual-exclusion-in-distributed-system/?ref=lbp 2/4

You might also like