我在Cassandra上有一个大型数据集,当我运行查询以在Cassandra上获取1或10或100000的有限数据集时,它首次返回行,但是当我尝试再次运行相同的查询时它获取0行,当我退出并再次登录时它可以工作
有人能解释我,发生了什么事吗?
hadmin@cqlsh> use test ;
hadmin@cqlsh:test> select store_name from data where customers_name = 'LOTTE' limit 1 ALLOW FILTERING;
store_name
---------------------------------
Lottemart
(1 rows)
hadmin@cqlsh:test> select store_name from data where customers_name = 'LOTTE' limit 1 ALLOW FILTERING;
store_name
------------
(0 rows)
我正在使用版本(3.10)