Re: Paging On HBASE like solr

2012-11-22 Thread Ryan Smith
gt; >> >But, > >> >In my case irrespective of rowkey I need 100 rows always. If I go with > >> >this > >> >concept if 5 rows are deleted in between 1 to 100 then it will give me > 95 > >> >but not 100. > >> >But for me always I

Re: Paging On HBASE like solr

2012-11-22 Thread Mohammad Tariq
gt; >> >But, > >> >In my case irrespective of rowkey I need 100 rows always. If I go with > >> >this > >> >concept if 5 rows are deleted in between 1 to 100 then it will give me > 95 > >> >but not 100. > >> >But for me always I

Re: Paging On HBASE like solr

2012-11-22 Thread Harsh J
here may be deletions of rows or adding and all on >> >DB, I >> >can't keep track of rows for this paging.. >> >Paging needs a fixed number of rows in each page always. >> > >> > >> > >> > >> >-Original Message- >> >

Re: Paging On HBASE like solr

2012-11-22 Thread Ryan Smith
; > > >And as after usage there may be deletions of rows or adding and all on > >DB, I > >can't keep track of rows for this paging.. > >Paging needs a fixed number of rows in each page always. > > > > > > > > > >-Original Message- > >From: Doug Mei

Re: Paging On HBASE like solr

2012-11-22 Thread Doug Meil
>DB, I >can't keep track of rows for this paging.. >Paging needs a fixed number of rows in each page always. > > > > >-Original Message----- >From: Doug Meil [mailto:doug.m...@explorysmedical.com] >Sent: 22 November 2012 00:21 >To: user@hbase.apache.org &g

RE: Paging On HBASE like solr

2012-11-22 Thread Vajrakumar
se.apache.org Subject: Re: Paging On HBASE like solr Hi there, Pretty similar approach with Hbase. See the Scan class. http://hbase.apache.org/book.html#data_model_operations On 11/21/12 1:04 PM, "Vajrakumar" wrote: >Hello all, >As we do paging in solr using star

Re: Paging On HBASE like solr

2012-11-21 Thread Doug Meil
Hi there, Pretty similar approach with Hbase. See the Scan class. http://hbase.apache.org/book.html#data_model_operations On 11/21/12 1:04 PM, "Vajrakumar" wrote: >Hello all, >As we do paging in solr using start and rowCount I need to implement same >through hbase. > >In Detail: >I have

Paging On HBASE like solr

2012-11-21 Thread Vajrakumar
Hello all, As we do paging in solr using start and rowCount I need to implement same through hbase. In Detail: I have 1000 rows data which I need to display in 10 pages each page containing 100 rows. So on click of next page we will send current rowStart (1,101,201,301,401,501...) and rowCount