Class FirstKeyValueMatchingQualifiersFilter


Deprecated.
Deprecated in 2.0.0 and will be removed in 3.0.0.
The filter looks for the given columns in KeyValue. Once there is a match for any one of the columns, it returns ReturnCode.NEXT_ROW for remaining KeyValues in the row.

Note : It may emit KVs which do not have the given columns in them, if these KVs happen to occur before a KV which does have a match. Given this caveat, this filter is only useful for special cases like org.apache.hadoop.hbase.mapreduce.RowCounter.

See Also:
  • Field Details

  • Constructor Details

    • FirstKeyValueMatchingQualifiersFilter

      public FirstKeyValueMatchingQualifiersFilter(Set<byte[]> qualifiers)
      Deprecated.
      Constructor which takes a set of columns. As soon as first KeyValue matching any of these columns is found, filter moves to next row.
      Parameters:
      qualifiers - the set of columns to me matched.
  • Method Details