You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I'm trying to test async-paging with scassandra, using protocol V2.
I create a primeRequest that returns several rows, and set default fetch size to 1 in query options, however, the java client is clearly not using the MultiPage
Is paging not implemented in scassandra?
Lior
The text was updated successfully, but these errors were encountered:
Paging is not currently handled in scassandra, although I think it would be somewhat reasonable to add at some point.
Scassandra could inspect the fetch size of queries and return the appropriate number of rows, and set the paging state based on the index of the next row to return, then when the paging state is provided in the next query it could start from that row index.
I think we could support it. It would be the first time we keep state about a request beyond the scope of a single query from the driver but totally doable.
Hi,
I'm trying to test async-paging with scassandra, using protocol V2.
I create a primeRequest that returns several rows, and set default fetch size to 1 in query options, however, the java client is clearly not using the MultiPage
Is paging not implemented in scassandra?
Lior
The text was updated successfully, but these errors were encountered: