@InterfaceAudience.Public
@InterfaceStability.Evolving
public class MultiRowRangeFilter
extends org.apache.hadoop.hbase.filter.FilterBase
| Modifier and Type | Class and Description |
|---|---|
static class |
MultiRowRangeFilter.RowRange |
Filter.ReturnCode| Constructor and Description |
|---|
MultiRowRangeFilter(List<MultiRowRangeFilter.RowRange> list) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
filterAllRemaining()
Filters that never filter all remaining can inherit this implementation that
never stops the filter early.
|
Filter.ReturnCode |
filterKeyValue(Cell ignored)
A way to filter based on the column family, column qualifier and/or the column value.
|
boolean |
filterRowKey(byte[] buffer,
int offset,
int length)
Filters that do not filter by row key can inherit this implementation that
never filters anything.
|
Cell |
getNextCellHint(Cell currentKV)
Filters that are not sure which key must be next seeked to, can inherit
this implementation that, by default, returns a null Cell.
|
List<MultiRowRangeFilter.RowRange> |
getRowRanges() |
static MultiRowRangeFilter |
parseFrom(byte[] pbBytes) |
static List<MultiRowRangeFilter.RowRange> |
sortAndMerge(List<MultiRowRangeFilter.RowRange> ranges)
sort the ranges and if the ranges with overlap, then merge them.
|
byte[] |
toByteArray()
Return length 0 byte array for Filters that don't require special serialization
|
createFilterFromArguments, filterRow, filterRowCells, getNextKeyHint, hasFilterRow, isFamilyEssential, reset, toString, transform, transformCellisReversed, setReversedpublic MultiRowRangeFilter(List<MultiRowRangeFilter.RowRange> list) throws IOException
list - A list of RowRangeIOException - throw an exception if the range list is not in an natural order or any
RowRange is invalidpublic boolean filterAllRemaining()
org.apache.hadoop.hbase.filter.FilterBaseIOException.filterAllRemaining in class org.apache.hadoop.hbase.filter.FilterBasepublic List<MultiRowRangeFilter.RowRange> getRowRanges()
public boolean filterRowKey(byte[] buffer,
int offset,
int length)
org.apache.hadoop.hbase.filter.FilterBaseFilter.filterKeyValue(Cell) below.
Concrete implementers can signal a failure condition in their code by throwing an
IOException.filterRowKey in class org.apache.hadoop.hbase.filter.FilterBasebuffer - buffer containing row keyoffset - offset into buffer where row key startslength - length of the row keypublic Filter.ReturnCode filterKeyValue(Cell ignored)
FilterReturnCode.NEXT_ROW, it should return
ReturnCode.NEXT_ROW until Filter.reset() is called just in case the caller calls
for the next row.
Concrete implementers can signal a failure condition in their code by throwing an
IOException.filterKeyValue in class Filterignored - the Cell in questionFilter.ReturnCodepublic Cell getNextCellHint(Cell currentKV)
org.apache.hadoop.hbase.filter.FilterBaseIOException.getNextCellHint in class org.apache.hadoop.hbase.filter.FilterBasepublic byte[] toByteArray()
org.apache.hadoop.hbase.filter.FilterBasetoByteArray in class org.apache.hadoop.hbase.filter.FilterBasepublic static MultiRowRangeFilter parseFrom(byte[] pbBytes) throws org.apache.hadoop.hbase.exceptions.DeserializationException
pbBytes - A pb serialized instanceorg.apache.hadoop.hbase.exceptions.DeserializationExceptionpublic static List<MultiRowRangeFilter.RowRange> sortAndMerge(List<MultiRowRangeFilter.RowRange> ranges)
ranges - the list of ranges to sort and merge.Copyright © 2007–2019 The Apache Software Foundation. All rights reserved.