Re: Reproduce stale read in Cassandra

2015-09-08 Thread Cindy Wang
Hello Jonathan, Thanks for your quick reply. Since consistency is tunable by making tradeoffs with latency and availability, it lead me to think about how to improve the consistency level (better than eventual consistency) while guarantee that latency and availability won't be affected much. So no

Re: Reproduce stale read in Cassandra

2015-09-08 Thread Jonathan Ellis
2 node cluster. RF=2. Take one node down. Do a write. Take the other node down. Do a read. It will be stale since the node that is up missed the original write, and you took the node that did see the write down before it could replay to it. This is by design though so I'm curious what kind