Aller au contenu principal

Vector clock


Vector clock


A vector clock is a data structure used for determining the partial ordering of events in a distributed system and detecting causality violations. Just as in Lamport timestamps, inter-process 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 "largest possible values" copy of the global clock-array is kept in each process.

Denote V C i {\displaystyle VC_{i}} as the vector clock maintained by process i {\displaystyle i} , the clock updates proceed as follows:

  • Initially all clocks are zero.
  • Each time a process experiences an internal event, it increments its own logical clock in the vector by one. For instance, upon an event at process i {\displaystyle i} , it updates V C i [ i ] V C i [ i ] + 1 {\displaystyle VC_{i}[i]\leftarrow VC_{i}[i]+1} .
  • Each time a process sends a message, it increments its own logical clock in the vector by one (as in the bullet above, but not twice for the same event) then it pairs the message with a copy of its own vector and finally sends the pair.
  • Each time a process receives a message-vector clock pair, 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 pair (for every element). For example, if process P i {\displaystyle P_{i}} receives a message ( m , V C j ) {\displaystyle (m,VC_{j})} from P j {\displaystyle P_{j}} , it first increments its own logical clock in the vector by one V C i [ i ] V C i [ i ] + 1 {\displaystyle VC_{i}[i]\leftarrow VC_{i}[i]+1} and then updates its entire vector by setting V C i [ k ] max ( V C i [ k ] , V C j [ k ] ) , k {\displaystyle VC_{i}[k]\leftarrow \max(VC_{i}[k],VC_{j}[k]),\forall k} .

History

Lamport originated the idea of logical Lamport clocks in 1978. However, the logical clocks in that paper were scalars, not vectors. The generalization to vector time was developed several times, apparently independently, by different authors in the early 1980s. At least 6 papers contain the concept. The papers canonically cited in reference to vector clocks are Colin Fidge’s and Friedemann Mattern’s 1988 works, as they (independently) established the name "vector clock" and the mathematical properties of vector clocks.

Partial ordering property

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

  • V C ( x ) {\displaystyle VC(x)} denotes the vector clock of event x {\displaystyle x} , and V C ( x ) z {\displaystyle VC(x)_{z}} denotes the component of that clock for process z {\displaystyle 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 ] {\displaystyle VC(x)<VC(y)\iff \forall z[VC(x)_{z}\leq VC(y)_{z}]\land \exists z'[VC(x)_{z'}<VC(y)_{z'}]}
    • In English: V C ( x ) {\displaystyle VC(x)} is less than V C ( y ) {\displaystyle VC(y)} , if and only if V C ( x ) z {\displaystyle VC(x)_{z}} is less than or equal to V C ( y ) z {\displaystyle VC(y)_{z}} for all process indices z {\displaystyle z} , and at least one of those relationships is strictly smaller (that is, V C ( x ) z < V C ( y ) z {\displaystyle VC(x)_{z'}<VC(y)_{z'}} ).
  • x y {\displaystyle x\to y\;} denotes that event x {\displaystyle x} happened before event y {\displaystyle y} . It is defined as: if x y {\displaystyle x\to y\;} , then V C ( x ) < V C ( y ) {\displaystyle VC(x)<VC(y)}

Properties:

  • Antisymmetry: if V C ( a ) < V C ( b ) {\displaystyle VC(a)<VC(b)} , then ¬ ( V C ( b ) < V C ( a ) ) {\displaystyle (VC(b)<VC(a))}
  • Transitivity: if V C ( a ) < V C ( b ) {\displaystyle VC(a)<VC(b)} and V C ( b ) < V C ( c ) {\displaystyle VC(b)<VC(c)} , then V C ( a ) < V C ( c ) {\displaystyle VC(a)<VC(c)} ; or, if a b {\displaystyle a\to b\;} and b c {\displaystyle b\to c\;} , then a c {\displaystyle a\to c\;}

Relation with other orders:

  • Let R T ( x ) {\displaystyle RT(x)} be the real time when event x {\displaystyle x} occurs. If V C ( a ) < V C ( b ) {\displaystyle VC(a)<VC(b)} , then R T ( a ) < R T ( b ) {\displaystyle RT(a)<RT(b)}
  • Let C ( x ) {\displaystyle C(x)} be the Lamport timestamp of event x {\displaystyle x} . If V C ( a ) < V C ( b ) {\displaystyle VC(a)<VC(b)} , then C ( a ) < C ( b ) {\displaystyle C(a)<C(b)}

Other mechanisms

  • In 1999, Torres-Rojas and Ahamad developed Plausible Clocks, a mechanism that takes less space than vector clocks but that, in some cases, will totally order events that are causally concurrent.
  • In 2005, Agarwal and Garg created Chain Clocks, a system that tracks dependencies using vectors with size smaller than the number of processes and that adapts automatically to systems with dynamic number of processes.
  • In 2008, Almeida et al. introduced 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.
  • In 2019, Lum Ramabaja proposed Bloom Clocks, a probabilistic data structure based on Bloom filters. Compared to a vector clock, the space used per node is fixed and does not depend on the number of nodes in a system. Comparing two clocks either produces a true negative (the clocks are not comparable), or else a suggestion that one clock precedes the other, with the possibility of a false positive where the two clocks are unrelated. The false positive rate decreases as more storage is allowed.

See also

  • Lamport timestamps
  • Matrix clocks
  • Version vector

References

Giuseppe Zanotti Luxury Sneakers

External links

  • Why Logical Clocks are Easy (Compares Causal Histories, Vector Clocks and Version Vectors)
  • Explanation of Vector clocks
  • Timestamp-based vector clock implementation in Erlang
  • Vector clock implementation in Objective-C
  • Vector clock implementation in Erlang
  • Why Vector Clocks are Hard
  • Why Cassandra doesn’t need vector clocks

Text submitted to CC-BY-SA license. Source: Vector clock by Wikipedia (Historical)