Breaking News: Grepper is joining You.com. Read the official announcement!
Check it out

Consistency models

Sumit Rawal answered on May 21, 2023 Popularity 7/10 Helpfulness 2/10

Contents


More Related Answers

  • data consistency
  • Handling Eventual Consistency with Distributed Systems
  • What are the consistency models in DynamoDB?
  • Read consistency
  • Data consistency Model – S3#
  • Sequential Consistency

  • Consistency models

    0

    Consistency model is other important factor to consider when designing a key-value store. A consistency model defines the degree of data consistency, and a wide spectrum of possible consistency models exist:

    Strong consistency: any read operation returns a value corresponding to the result of the most updated write data item. A client never sees out-of-date data.

    Weak consistency: subsequent read operations may not see the most updated value.

    Eventual consistency: this is a specific form of weak consistency. Given enough time, all updates are propagated, and all replicas are consistent.

    Strong consistency is usually achieved by forcing a replica not to accept new reads/writes until every replica has agreed on current write. This approach is not ideal for highly available systems because it could block new operations. Dynamo and Cassandra adopt eventual consistency, which is our recommended consistency model for our key-value store. From concurrent writes, eventual consistency allows inconsistent values to enter the system and force the client to read the values to reconcile. The next section explains how reconciliation works with versioning.

    Popularity 7/10 Helpfulness 2/10 Language whatever
    Source: Grepper
    Link to this answer
    Share Copy Link
    Contributed on May 21 2023
    Sumit Rawal
    0 Answers  Avg Quality 2/10


    X

    Continue with Google

    By continuing, I agree that I have read and agree to Greppers's Terms of Service and Privacy Policy.
    X
    Grepper Account Login Required

    Oops, You will need to install Grepper and log-in to perform this action.