Struct garage_table::crdt::Lww[][src]

pub struct Lww<T> { /* fields omitted */ }
Expand description

Last Write Win (LWW)

An LWW CRDT associates a timestamp with a value, in order to implement a time-based reconciliation rule: the most recent write wins. For completeness, the LWW reconciliation rule must also be defined for two LWW CRDTs with the same timestamp but different values.

In our case, we add the constraint that the value that is wrapped inside the LWW CRDT must itself be a CRDT: in the case when the timestamp does not allow us to decide on which value to keep, the merge rule of the inner CRDT is applied on the wrapped values. (Note that all types that implement the Ord trait get a default CRDT implemetnation that keeps the maximum value. This enables us to use LWW directly with primitive data types such as numbers or strings. It is generally desirable in this case to never explicitly produce LWW values with the same timestamp but different inner values, as the rule to keep the maximum value isn’t generally the desired semantics.)

As multiple computers clocks are always desynchronized, when operations are close enough, it is equivalent to take one copy and drop the other one.

Given that clocks are not too desynchronized, this assumption is enough for most cases, as there is few chance that two humans coordonate themself faster than the time difference between two NTP servers.

As a more concret example, let’s suppose you want to upload a file with the same key (path) in the same bucket at the very same time. For each request, the file will be timestamped by the receiving server and may differ from what you observed with your atomic clock!

This scheme is used by AWS S3 or Soundcloud and often without knowing in enterprise when reconciliating databases with ad-hoc scripts.

Implementations

impl<T> Lww<T> where
    T: Crdt
[src]

pub fn new(value: T) -> Self[src]

Creates a new CRDT

CRDT’s internal timestamp is set with current node’s clock.

pub fn migrate_from_raw(ts: u64, value: T) -> Self[src]

Build a new CRDT from a previous non-compatible one

Compared to new, the CRDT’s timestamp is not set to now but must be set to the previous, non-compatible, CRDT’s timestamp.

pub fn update(&mut self, new_value: T)[src]

Update the LWW CRDT while keeping some causal ordering.

The timestamp of the LWW CRDT is updated to be the current node’s clock at time of update, or the previous timestamp + 1 if that’s bigger, so that the new timestamp is always strictly larger than the previous one. This ensures that merging the update with the old value will result in keeping the updated value.

pub fn get(&self) -> &T[src]

Get the CRDT value

pub fn get_mut(&mut self) -> &mut T[src]

Get a mutable reference to the CRDT’s value

This is usefull to mutate the inside value without changing the LWW timestamp. When such mutation is done, the merge between two LWW values is done using the inner CRDT’s merge operation. This is usefull in the case where the inner CRDT is a large data type, such as a map, and we only want to change a single item in the map. To do this, we can produce a “CRDT delta”, i.e. a LWW that contains only the modification. This delta consists in a LWW with the same timestamp, and the map inside only contains the updated value. The advantage of such a delta is that it is much smaller than the whole map.

Avoid using this if the inner data type is a primitive type such as a number or a string, as you will then rely on the merge function defined on Ord types by keeping the maximum of both values.

Trait Implementations

impl<T: Clone> Clone for Lww<T>[src]

fn clone(&self) -> Lww<T>[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<T> Crdt for Lww<T> where
    T: Clone + Crdt
[src]

fn merge(&mut self, other: &Self)[src]

Merge the two datastructures according to the CRDT rules. self is modified to contain the merged CRDT value. other is not modified. Read more

impl<T: Debug> Debug for Lww<T>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl<'de, T> Deserialize<'de> for Lww<T> where
    T: Deserialize<'de>, 
[src]

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
    __D: Deserializer<'de>, 
[src]

Deserialize this value from the given Serde deserializer. Read more

impl<T: PartialEq> PartialEq<Lww<T>> for Lww<T>[src]

fn eq(&self, other: &Lww<T>) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &Lww<T>) -> bool[src]

This method tests for !=.

impl<T> Serialize for Lww<T> where
    T: Serialize
[src]

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
    __S: Serializer
[src]

Serialize this value into the given Serde serializer. Read more

impl<T> StructuralPartialEq for Lww<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Lww<T> where
    T: RefUnwindSafe

impl<T> Send for Lww<T> where
    T: Send

impl<T> Sync for Lww<T> where
    T: Sync

impl<T> Unpin for Lww<T> where
    T: Unpin

impl<T> UnwindSafe for Lww<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T> Instrument for T[src]

fn instrument(self, span: Span) -> Instrumented<Self>[src]

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

fn in_current_span(self) -> Instrumented<Self>[src]

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> Pointable for T

pub const ALIGN: usize

The alignment of pointer.

type Init = T

The type for initializers.

pub unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more

pub unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more

pub unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more

pub unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

pub fn vzip(self) -> V

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]