Eventual Consistency

后端 未结 4 2023
我在风中等你
我在风中等你 2020-12-08 08:00

I am in the early stages of design of an application that has to be highly available and scalable. I want to use an eventual consistency data model for this for a number of

4条回答
  •  再見小時候
    2020-12-08 08:46

    All systems build on distributed computing models are build on CAP and BASE. Here the main concern is If our system provides Availability and Partition Tolerance we cannot have true consistency but we can have eventual consistency.

    The idea behind eventual consistency is that each node is always available to serve requests. As a trade-off, data modifications are propagated in the background to other nodes. This means that at any time the system may be inconsistent, but the data is still largely accurate.

    Source: http://www.techspritz.com/eventual-consistency-and-base-model/

提交回复
热议问题