Need help on RowFilter

2014-07-10 Thread Madabhattula Rajesh Kumar
Hi Team, Could you please help me to resolve below issue. In my hbase table, i've a 30 records. I need to retrieve records based on list of rowkeys. I'm using below code base. It is not giving records HTable table = new HTable(configuration, tableName); ListFilter filters = new

Re: Need help on RowFilter

2014-07-10 Thread Madabhattula Rajesh Kumar
()) { System.out.print(new String(kv.getRow()) + ); } } -Ian Brooks On Thursday 10 Jul 2014 16:38:04 Madabhattula Rajesh Kumar wrote: Hi Team, Could you please help me to resolve below issue. In my hbase table, i've a 30 records. I need to retrieve records based on list of rowkeys. I'm using below

Re: Need help on RowFilter

2014-07-10 Thread Madabhattula Rajesh Kumar
On Thursday 10 Jul 2014 17:08:58 Madabhattula Rajesh Kumar wrote: Hi Ian, Thank you very much of the solution. Could you please explain at what are the use cases we need to use RowFilter? Regards, Rajesh On Thu, Jul 10, 2014 at 4:48 PM, Ian Brooks i.bro...@sensewhere.com wrote: HI