The problem is when we have more KVs in that row than the limit [limit in ColumnCountGetFilter].. In this case with FilterList the problem is coming. @Ben can u file a Jira?
-Anoop- ________________________________________ From: Anoop Sam John [[email protected]] Sent: Tuesday, May 29, 2012 5:22 PM To: [email protected] Subject: RE: ColumnCountGetFilter not working with FilterList Hi Ben, Is this the same code you are testing? Which version of HBase you are testing with? I have checked with 0.94 and it works fine ( with FilterList also ) -Anoop- ________________________________________ From: Ben Kim [[email protected]] Sent: Tuesday, May 29, 2012 5:04 PM To: [email protected] Subject: ColumnCountGetFilter not working with FilterList This is a straightforward question and problem. Get get = new Get(rowkey); FilterList filterList = new FilterList(); filterList.addFilter(new ColumnCountGetFilter(100)); get.setFilter(filterList); Result r = table.get(get); This returns zero columns where it should have 100 columns. It works well without FilterList. Don't know what went wrong. Any help would be thankful -- *Benjamin Kim* *benkimkimben at gmail*
