Girish Mahajan (Editor)

Vector clock

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

A vector clock is an algorithm for generating a partial ordering of events in a distributed system and detecting causality violations. Just as in Lamport timestamps, interprocess messages contain the state of the sending process's logical clock. A vector clock of a system of N processes is an array/vector of N logical clocks, one clock per process; a local "smallest possible values" copy of the global clock-array is kept in each process, with the following rules for clock updates:

Contents

  • Initially all clocks are zero.
  • Each time a process experiences an internal event, it increments its own logical clock in the vector by one.
  • Each time a process prepares to send a message, it sends its entire vector along with the message being sent.
  • Each time a process receives a message, it increments its own logical clock in the vector by one and updates each element in its vector by taking the maximum of the value in its own vector clock and the value in the vector in the received message (for every element).
  • The vector clocks algorithm was independently developed by Colin Fidge and Friedemann Mattern in 1988.

    Partial ordering property

    Vector clocks allow for the partial causal ordering of events. Defining the following:

  • V C ( x ) denotes the vector clock of event x , and V C ( x ) z denotes the component of that clock for process z .
  • V C ( x ) < V C ( y ) z [ V C ( x ) z V C ( y ) z ] z [ V C ( x ) z < V C ( y ) z ]
  • In English: V C ( x ) is less than V C ( y ) , if and only if V C ( x ) z is less than or equal to V C ( y ) z for all process indices z , and at least one of those relationships is strictly smaller (that is, V C ( x ) z < V C ( y ) z ).
  • x y denotes that event x happened before event y . It is defined as: if x y , then V C ( x ) < V C ( y )
  • Properties:

  • If V C ( a ) < V C ( b ) , then a b
  • Antisymmetry: if V C ( a ) < V C ( b ) , then ¬ V C ( b ) < V C ( a )
  • Transitivity: if V C ( a ) < V C ( b ) and V C ( b ) < V C ( c ) , then V C ( a ) < V C ( c ) or if a b and b c , then a c
  • Relation with other orders:

  • Let R T ( x ) be the real time when event x occurs. If V C ( a ) < V C ( b ) , then R T ( a ) < R T ( b )
  • Let C ( x ) be the Lamport timestamp of event x . If V C ( a ) < V C ( b ) , then C ( a ) < C ( b )
  • Other mechanisms

  • Almeida et al., introduced in 2008 Interval Tree Clocks. This mechanism generalizes Vector Clocks and allows operation in dynamic environments when the identities and number of processes in the computation is not known in advance. You can find an implementation of ITC named itc4j here.
  • Torres-Rojas and Ahamad, developed in 1999 Plausible Clocks, a mechanism that takes less space than vector clocks but that, in some cases, will totally order events that are causally concurrent.
  • References

    Vector clock Wikipedia


    Similar Topics