Hi Experts, I am using 3.9 cassandra in production environment,we have 6 nodes,the RF of keyspace is 3, I have a table which below definition: CREATE TABLE nev_prod_tsp.heartbeat ( vin text PRIMARY KEY, create_time timestamp, pkg_sn text, prot_ver text, trace_time timestamp, tsp_sn text ) WITH bloom_filter_fp_chance = 0.01 AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'} AND comment = 'heartbeat' AND compaction = {'class': 'org.apache.cassandra.db.compaction.TimeWindowCompactionStrategy', 'compaction_window_size': '2', 'compaction_window_unit': 'MINUTES', 'max_threshold': '32', 'min_threshold': '4'} AND compression = {'chunk_length_in_kb': '64', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'} AND crc_check_chance = 1.0 AND dclocal_read_repair_chance = 0.1 AND default_time_to_live = 60 AND gc_grace_seconds = 120 AND max_index_interval = 2048 AND memtable_flush_period_in_ms = 0 AND min_index_interval = 128 AND read_repair_chance = 0.2 AND speculative_retry = '99PERCENTILE'; I am updating this table's data every 5 or 10 seconds, the data sample is as below: cassandra@cqlsh> select * from nev_prod_tsp.heartbeat;
vin | create_time | pkg_sn | prot_ver | trace_time | tsp_sn -------------------+---------------------------------+--------+----------+---------------------------------+-------------------------------------- LLXA2A408JA002371 | 2018-08-31 08:16:07.348000+0000 | 128209 | 2 | 2018-08-31 08:16:09.000000+0000 | ad4c2b13-d894-4804-9cf2-e07a3c5851bd LLXA2A400JA002333 | 2018-08-31 08:16:06.386000+0000 | 142944 | 2 | 2018-08-31 08:16:04.000000+0000 | 6ba9655c-8542-4251-ba9b-93ae7420ecc7 LLXA2A402JA002351 | 2018-08-31 08:16:09.451000+0000 | 196040 | 2 | 2018-08-31 08:16:07.000000+0000 | 9b6a5d7d-4917-46bc-a247-8a0ff8c1e699 ........ but we I select all data from this table,the results from different nodes are not the same: node1: about 60 rows node2:about 140 rows node3:about 30 rows node4:about 140 rows node5:about 70 rows node6:about 140 rows I have tried compact and repair on all nodes,but didn't help. Could any one give me some help?Thanks very much.