在文档 [1] 中,据说
if using a write consistency level of QUORUM with a replication factor
of 3, Cassandra will send the write to 2 replicas. If the write fails on
one of the replicas but succeeds on the other, Cassandra will report a
write failure to the client.
所以假设只有 2 个副本收到更新,写入失败。但由于最终一致性,所有节点最终都会收到更新。
那么,我应该重试吗?还是就这样吧?
有什么策略吗?