Meaning of eventual consistency in Cassandra?

后端 未结 5 1355
心在旅途
心在旅途 2021-02-19 18:46

What is the meaning of eventual consistency in Cassandra when nodes in a single cluster do not contain the copies of same data but data is distributed among nodes. Now since a s

5条回答
  •  野性不改
    2021-02-19 19:23

    Cassandra tends to compromise latency and consistency for availability. It’s “eventually consistent,” a model for NoSQL database consistency that’s used with distributed setups. Rather than maintain strict consistency that could really slow things down at scale, eventual consistency enables high availability—just at the cost of every instance of your data not being synced up across all servers right away.

提交回复
热议问题