Re: How to get page id without transmitting data to client

2018-01-01 Thread Eunsu Kim
Thank you for your response. happy new year > On 30 Dec 2017, at 5:33 AM, Andy Tolbert wrote: > > Hi Eunsu, > > Unfortunately there is not really a way to do this that I'm aware of. The > page id contains data indicating where to start reading the next set of rows > (such as partition and c

Re: How to get page id without transmitting data to client

2017-12-29 Thread Andy Tolbert
Hi Eunsu, Unfortunately there is not really a way to do this that I'm aware of. The page id contains data indicating where to start reading the next set of rows (such as partition and clustering information), and in order to get to that position you have to actually read the data. The driver doe

How to get page id without transmitting data to client

2017-12-28 Thread Eunsu Kim
Hello everybody, I am using the datastax Java driver (3.3.0). When query large amounts of data, we set the fetch size (1) and transmit the data to the browser on a page-by-page basis. I am wondering if I can get the page id without receiving the real rows from the cassandra to my server.