cassandra - Paging Datastax java driver -


can point me detailed documentation how paging implemented, page , page state? have gone through https://datastax.github.io/java-driver/manual/paging/

but how implemented internally?

is coordinator drawing data , limit offset query data drawn out replicas sequentially every page request?

or saving file cursor , doing randomaccess? if can driver , use later on?

the documentation mentioned up-to-date pagination datastax java driver. can read this blog post, bit old, still valid.

is coordinator drawing data , limit offset query [...] ?

no. actually, there no "offset query" in cassandra, see cassandra-6511. covered in driver documentation on paging.

or saving file cursor , doing randomaccess? if can driver , use later on?

yes both. paging state exposed driver meant used in way; again, explained in driver documentation on paging.


Comments

Popular posts from this blog

jOOQ update returning clause with Oracle -

java - Warning equals/hashCode on @Data annotation lombok with inheritance -

java - BasicPathUsageException: Cannot join to attribute of basic type -