I have a Cassandra cluster with 4 nodes. I have a keyspace with replication factor 3.
Here are the sample cqlsh results I get when I do "select count(*) on a particular table. The results are consistently different even if consistency level is set as ALL or QUORUM.
cqlsh:test> CONSISTENCY all
Consistency level set to ALL.
cqlsh:test> select count(*) from article;
count
28620 (1 rows)
cqlsh:test> select count(*) from article;
count
28703 (1 rows)
cqlsh:test> select count(*) from article;
count
28046 (1 rows)
cqlsh:test> CONSISTENCY QUORUM
Consistency level set to QUORUM.
cqlsh:test> select count(*) from article;
count
28612 (1 rows)
cqlsh:test> select count(*) from article;
count
28122 (1 rows)
cqlsh:test>