Hi,
I work with ccm. When I do a select on a table:
ccm node1 cqlsh -e "select * from keyspace.table;"
I always get 100 records and not more, even if there are more records than 100.
Someone could help me on this topics, as it seemes that there is like a LIMIT 100 ?
Thanks.
William
Finally, I found the solution:
ccm node1 cqlsh -e "paging 500; select * from TABLE;" to get 500 rows. paging off to get the max.
William.