RE: Paging On HBASE like solr

2012-11-22 Thread Vajrakumar
: 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 vajra.ku...@pointcross.com wrote: Hello all, As we do paging in solr using start and rowCount I need

Re: Paging On HBASE like solr

2012-11-22 Thread Doug Meil
. -Original Message- From: Doug Meil [mailto:doug.m...@explorysmedical.com] Sent: 22 November 2012 00:21 To: user@hbase.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

Re: Paging On HBASE like solr

2012-11-22 Thread Ryan Smith
- From: Doug Meil [mailto:doug.m...@explorysmedical.com] Sent: 22 November 2012 00:21 To: user@hbase.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

Re: Paging On HBASE like solr

2012-11-22 Thread Harsh J
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 Subject: Re: Paging On HBASE like solr Hi

Re: Paging On HBASE like solr

2012-11-22 Thread Mohammad Tariq
...@explorysmedical.com] Sent: 22 November 2012 00:21 To: user@hbase.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

Re: Paging On HBASE like solr

2012-11-22 Thread Ryan Smith
...@explorysmedical.com] Sent: 22 November 2012 00:21 To: user@hbase.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

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

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 vajra.ku...@pointcross.com wrote: Hello all, As we do paging in solr using start and rowCount I need to implement same through hbase.