Meaning of eventual consistency in Cassandra?

后端 未结 5 1354
心在旅途
心在旅途 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:22

    Its up to the client to decide the appropriate consistency level (zero, any, one, quoram or all). (The consistency level controls both read and write behavior based on your replicationfactor.) In a single node cluster the consistency levels any, one, quorom and all are equivalent.

提交回复
热议问题