um12
um12

Reputation: 9

NoSQL, Cassandra and Cloud databases

Upvotes: 0

Views: 111

Answers (1)

Brad Schoening
Brad Schoening

Reputation: 1371

Cassandra uses eventual consistency and extends the concept with tunable consistency levels. The most common consistency level, and probably what most use cases should use is quorum consistency.

Quorum means a majority of the nodes agree on the data values being written or read. This provides strong read and write consistency and availability in the case of node failure.

enter image description here

Upvotes: 1

Related Questions