We have Materialized view in Cassandra, i am running a read query to get data from MV, however i find the result is different by using java driver and using cql, is it possible?
Asked
Active
Viewed 109 times
1 Answers
0
It may depend on the query that you're running, like, if you do select * from table
, then the order of data is not guaranteed between partitions (only inside the partition). Also, data could be inconsistent between different replicas, so you may need to perform repair on given materialized view, or use consistency level like, LOCAL_QUORUM
.

Alex Ott
- 80,552
- 8
- 87
- 132