Re: Query With Limit Clause

2018-11-07 Thread shalom sagges
Thanks a lot for the info :) On Tue, Nov 6, 2018 at 11:11 AM DuyHai Doan wrote: > Cassandra will execute such request using a Partition Range Scan. > > See more details here http://www.doanduyhai.com/blog/?p=13191, chapter E > Cluster Read Path (look at the formula of Concurrency Factor) > > >

Query With Limit Clause

2018-11-05 Thread shalom sagges
Hi All, If I run for example: select * from myTable limit 3; Does Cassandra do a full table scan regardless of the limit? Thanks!