You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@hbase.apache.org by Ted Yu <yu...@gmail.com> on 2014/04/05 11:01:34 UTC

Re: FuzzyRowFilter with ColumnRangeFilter

In HBASE-6618, FuzzyRowFilter with range support is added. 

Does that serve your use case so that you don't need to use FilterList ?

Cheers

On Jul 24, 2013, at 11:13 PM, Premal Shah <pr...@gmail.com> wrote:

> Hi,
> I was playing around with using FuzzyRowFilter for my use case which looks
> like this
> 
> rk - 18 bytes (2 bytes + 8 bytes + 8 bytes)
> bytes 2-9 are fuzzy
> the fuzzy mask looks like this (0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0,
> 0, 0, 0 ,0)
> the start and stop key control the scan range
> 
> Running a scanner with just the FuzzyRowFilter works fine. However, I need
> to limit the columns returned. So I have a ColumnRangeFilter too. Both the
> filters are wrapped in a FilterList
> 
> The combination of both, returns no rows from hbase with MUST_PASS_ALL set.
> Hbase seems to be aborting when the row does not match Fuzzy
> If MUST_PASS_ONE is set, then it returns the columns from the rows that
> don't pass Fuzzy.
> 
> How do you go about using the FilterList with both filters and return the
> required rows only?
> 
> -- 
> Regards,
> Premal Shah.