You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by "Zheng Hu (JIRA)" <ji...@apache.org> on 2017/09/26 11:17:00 UTC

[jira] [Commented] (HBASE-18879) Hbase FilterList cause KeyOnlyFilter not work

    [ https://issues.apache.org/jira/browse/HBASE-18879?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16180615#comment-16180615 ] 

Zheng Hu commented on HBASE-18879:
----------------------------------

Thanks for the debug.  It seems like a BUG.   

For FilterList, we can consider a filter list as a node in a tree.  children of the node are the sub-filters in the relative filter list.   The logic of transforming cell of a filter list , well,  we can consider it as the process of  post-order tree traverse.  For a node ,  Before we traverse the current child,  we should set the traverse result (transformed cell) of previous node(s) as the initial value.   So I think the problem is here: 

{code}
// Accumulates successive transformation of every filter that includes the Cell:
Cell transformed = v;     -------------------------->  should set the traverse result of previous node(s) as the initial value(v if there's no previous node ),  not the v. 
ReturnCode rc = operator == Operator.MUST_PASS_ONE?
ReturnCode.SKIP: ReturnCode.INCLUDE;
{code}

The  pseudo-code should be : 
{code}
ReturnCode filterKeyValue(v, initialTransformKV){
    transformKV = initialTransformKV == null ? v: initialTransformKV;
    for(int i = 0 ; i < filters.size(); i++){
       filterKeyValue(v, transformKV);
       transformKV = filters[i].transformCell(transformKV);
       // ...merge return code... 
    }
    return rc; 
}

ReturnCode filterKeyValue(v){
    return filterKeyValue(v, null);
}
{code}

[~pengxu] , [~anoop.hbase], [~Apache9] , Could you take a look ? 

> Hbase FilterList cause KeyOnlyFilter not work
> ---------------------------------------------
>
>                 Key: HBASE-18879
>                 URL: https://issues.apache.org/jira/browse/HBASE-18879
>             Project: HBase
>          Issue Type: Bug
>          Components: Filters
>    Affects Versions: 1.2.4
>         Environment: OS: Red Hat 4.4.7-11
> Hadoop: 2.6.4
> Hbase: 1.2.4
>            Reporter: ZHA_Moonlight
>
> when use FilterList and KeyOnlyFilter together, if we put KeyOnlyFilter before FilterList, the KeyOnlyFilter may not work, means it will also grab the cell values:
> {code:java}
> List<Filter> filters = new ArrayList<Filter>();
>         Filter filter1 = new SingleColumnValueFilter(Bytes.toBytes("cf"), Bytes.toBytes("column1"),
>                 CompareOp.EQUAL, Bytes.toBytes("value1"));
>         Filter filter2 = new SingleColumnValueFilter(Bytes.toBytes("cf"), Bytes.toBytes("column1"),
>                 CompareOp.EQUAL, Bytes.toBytes("value2"));
>         filters.add(filter1);
>         filters.add(filter2);
>         FilterList filterListAll = new FilterList(Operator.MUST_PASS_ALL, 
>                 new KeyOnlyFilter(),
>                 new FilterList(Operator.MUST_PASS_ONE, filters));
> {code}
> use the above code as filter to scan a table, it will return the cells with value instead of only return the key,  if we put KeyOnlyFilter after FilterList as following, it works well.
>           
> {code:java}
> FilterList filterListAll = new FilterList(Operator.MUST_PASS_ALL,
>                 new FilterList(Operator.MUST_PASS_ONE, filters),
>                 new KeyOnlyFilter());
> {code}
> the cause should due to the following code at hbase-client  FilterList.java
> {code:java}
> @Override
>   @edu.umd.cs.findbugs.annotations.SuppressWarnings(value="SF_SWITCH_FALLTHROUGH",
>     justification="Intentional")
>   public ReturnCode filterKeyValue(Cell v) throws IOException {
>     this.referenceKV = v;
>     // Accumulates successive transformation of every filter that includes the Cell:
>     Cell transformed = v;
>     ReturnCode rc = operator == Operator.MUST_PASS_ONE?
>         ReturnCode.SKIP: ReturnCode.INCLUDE;
>     int listize = filters.size();
>     for (int i = 0; i < listize; i++) {
>       Filter filter = filters.get(i);
>       if (operator == Operator.MUST_PASS_ALL) {
>         if (filter.filterAllRemaining()) {
>           return ReturnCode.NEXT_ROW;
>         }
> LINE1      ReturnCode code = filter.filterKeyValue(v);{color}        
> switch (code) {
>         // Override INCLUDE and continue to evaluate.
>         case INCLUDE_AND_NEXT_COL:
>           rc = ReturnCode.INCLUDE_AND_NEXT_COL; // FindBugs SF_SWITCH_FALLTHROUGH
>         case INCLUDE:
> LINE2          transformed = filter.transformCell(transformed);{color}          
> continue;
>         case SEEK_NEXT_USING_HINT:
>           seekHintFilter = filter;
>           return code;
>         default:
>           return code;
>         }
>       }
> {code}
> notice the “LINE1”,"LINE2" , first line is a recursive invocation, it will assign a Cell results to the FilterList.transformedKV(we call it A), the results is from the FilterList with 2 SingleColumnValueFilter, so  A with contains the cell value, while the second line with return  A to the var transformed.
> back to the following loop, we can see the FilterList return results is var "transformed " which will override in each loop, so the value is determined by the last filter, so the order of KeyOnlyFilter will impact the results.
> {code:java}
>  Cell transformed = v;
>     ReturnCode rc = operator == Operator.MUST_PASS_ONE?
>         ReturnCode.SKIP: ReturnCode.INCLUDE;
>     int listize = filters.size();
>     for (int i = 0; i < listize; i++) {
>       Filter filter = filters.get(i);
>       if (operator == Operator.MUST_PASS_ALL) {
>         if (filter.filterAllRemaining()) {
>           return ReturnCode.NEXT_ROW;
>         }
>         ReturnCode code = filter.filterKeyValue(v);
>         switch (code) {
>         // Override INCLUDE and continue to evaluate.
>         case INCLUDE_AND_NEXT_COL:
>           rc = ReturnCode.INCLUDE_AND_NEXT_COL; // FindBugs SF_SWITCH_FALLTHROUGH
>         case INCLUDE:
>           transformed = filter.transformCell(transformed);
>           continue;
>         case SEEK_NEXT_USING_HINT:
>           seekHintFilter = filter;
>           return code;
>         default:
>           return code;
>         }
>       
> {code}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)