The TechGlider

Learning and sharing about Computer Science, programming, research & technology

Jul 31, 2016 - 3 minute read - Comments - review

Time, Clocks, and Ordering of Events in a Distributed System

Paper Title

Time, Clocks, and Ordering of Events in a Distributed System

Author(s)

Leslie Lamport

Date

July 1978. Communications of the ACM, Volume 21 Issue 7.

Novel Idea

Establishing total order of events can be used to implement any distributed system in the form of a state machine.

Main Result(s)

Happened before relationship within a system establishes a partial order of events in the system, but it is not sufficient to say which event among two occurred first, hence the need for a total order. Lamport presents an algorithm to extend partial ordering to an arbitrary total ordering of events while introducing the concept of logical clocks (called Lamport timestamps these days). A distributed algorithm to solve mutual exclusion is presented which demonstrates that the participating processes could just be treated as sequential state machines which can further be used to implement any arbitrary distributed system.

Need for synchronization of physical clocks arises to prevent possible anomalies as observed by user (or one could synchronize timestamps over all communication in the network to maintain happened-before relationship). Lamport presents a theorem for the upper bound on the amount of acceptable drift in synchronizing physical clocks (the proof is hard to read).

Impact

This is one of the most cited papers in Computer Science and considered one of the first true distributed systems paper. Introduces:

  • A mathematical happens-before (“happened before” in the paper) relationship, which is widely used as the basis for current distributed systems research and has found further application in other systems areas (foundation of Java and C++ memory models; Atlas, a persistent programming model (that I am working with this summer)).
  • Concept of causality / causal ordering of events in distributed systems.
  • Concept of logical clocks (Lamport clocks or Lamport timestamps) which further led to development of important ideas like vector clocks in later distributed systems research (while logical clocks are just software counters, I still need to learn what vector clocks are).

More at 2000 PODC Influential Paper Award page.

Evidence

This paper is fairly mathematical in nature. Mathematical definitions for most ideas introduced are provided which are then used to logically establish further results. Includes just one theorem which provides a upper bound on drift that is allowed in synchronizing physical time clocks but the author himself admits the proof is pretty difficult and hence is included in the Appendix.

Prior Work

There are just 4 references cited in the paper, two of which are foundational for this work, both describing relativity. Concept of causal effect is inspired from special relativity.

Competitive Work

NA

Reproducibility

NA

Question

Is the concept of logical time (given it can be used to establish total ordering) always sufficient for implementing modern distributed systems or do we always need to resort to physical clocks? How are the space overheads (described in mutual exclusion example in the paper) overcome?

Criticism

Do physical clocks as described by Lamport (with difficult to grasp mathematics and proof) play any important rule in modern design of distributed systems (apart from time sync protocols like NTP)?

Ideas for further work

This paper clarified many concepts about time and synchronization between processes for me which should be useful in my current summer project. A good insight was how one does not need to depend on system clock for establishing order of events among processes even on a single machine.


Review Template Credits: Prof. Rodrigo Fonseca