I am using spring-boot , datastax-java-cassandra-connector_2.11-2.4.1.jar and java8.
I have scenario where I need to read/load the data from C* table, but this table might have million of records.
I need to load this data from C* table, is there anyway in java/spring-boot using datastax-java-cassandra-connector API I can pull the data partition by partition?
SELECT * FROM table? the java driver (that it uses) returns an iterator that lazily fetches data as iterating through it. - Chris Lohfink