@InterfaceAudience.Private public class FilterListWithOR extends FilterListBase
Filter.ReturnCodefilters, subFiltersIncludedCell| Constructor and Description |
|---|
FilterListWithOR(List<Filter> filters) |
| Modifier and Type | Method and Description |
|---|---|
void |
addFilterLists(List<Filter> filters) |
boolean |
filterAllRemaining()
Filters that never filter all remaining can inherit this implementation that
never stops the filter early.
|
Filter.ReturnCode |
filterCell(org.apache.hadoop.hbase.Cell c)
A way to filter based on the column family, column qualifier and/or the column value.
|
boolean |
filterRow()
Filters that never filter by rows based on previously gathered state from
Filter.filterCell(Cell) can inherit this implementation that
never filters a row. |
boolean |
filterRowKey(byte[] rowKey,
int offset,
int length)
Filters that do not filter by row key can inherit this implementation that
never filters anything.
|
boolean |
filterRowKey(org.apache.hadoop.hbase.Cell firstRowCell)
Filters a row based on the row key.
|
protected String |
formatLogFilters(List<Filter> logFilters) |
org.apache.hadoop.hbase.Cell |
getNextCellHint(org.apache.hadoop.hbase.Cell currentCell)
Filters that are not sure which key must be next seeked to, can inherit
this implementation that, by default, returns a null Cell.
|
void |
reset()
Filters that are purely stateless and do nothing in their reset() methods can inherit
this null/empty implementation.
|
checkAndGetReversed, compareCell, filterKeyValue, filterRowCells, getFilters, hasFilterRow, isEmpty, isFamilyEssential, isInReturnCodes, setReversed, size, toString, transformCellcreateFilterFromArguments, toByteArrayisReversed, parseFrompublic void addFilterLists(List<Filter> filters)
addFilterLists in class FilterListBaseprotected String formatLogFilters(List<Filter> logFilters)
formatLogFilters in class FilterListBasepublic Filter.ReturnCode filterCell(org.apache.hadoop.hbase.Cell c) throws IOException
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.filterCell in class Filterc - the Cell in questionIOException - in case an I/O or an filter specific failure needs to be signaled.Filter.ReturnCodepublic void reset()
throws IOException
FilterBaseIOException.reset in class FilterBaseIOException - in case an I/O or an filter specific failure needs to be signaled.public boolean filterRowKey(byte[] rowKey,
int offset,
int length)
throws IOException
FilterBaseFilter.filterCell(Cell) below.
Concrete implementers can signal a failure condition in their code by throwing an
IOException.filterRowKey in class FilterBaserowKey - buffer containing row keyoffset - offset into buffer where row key startslength - length of the row keyIOException - in case an I/O or an filter specific failure needs to be signaled.public boolean filterRowKey(org.apache.hadoop.hbase.Cell firstRowCell)
throws IOException
FilterFilter.filterCell(Cell) below.
If Filter.filterAllRemaining() returns true, then Filter.filterRowKey(Cell) should
also return true.
Concrete implementers can signal a failure condition in their code by throwing an
IOException.filterRowKey in class FilterBasefirstRowCell - The first cell coming in the new rowIOException - in case an I/O or an filter specific failure needs to be signaled.public boolean filterAllRemaining()
throws IOException
FilterBaseIOException.filterAllRemaining in class FilterBaseIOException - in case an I/O or an filter specific failure needs to be signaled.public boolean filterRow()
throws IOException
FilterBaseFilter.filterCell(Cell) can inherit this implementation that
never filters a row.
Last chance to veto row based on previous Filter.filterCell(Cell) calls. The filter
needs to retain state then return a particular value for this call if they wish to exclude a
row if a certain column is missing (for example).
Concrete implementers can signal a failure condition in their code by throwing an
IOException.filterRow in class FilterBaseIOException - in case an I/O or an filter specific failure needs to be signaled.public org.apache.hadoop.hbase.Cell getNextCellHint(org.apache.hadoop.hbase.Cell currentCell)
throws IOException
FilterBaseIOException.getNextCellHint in class FilterBaseIOException - in case an I/O or an filter specific failure needs to be signaled.Copyright © 2007–2020 The Apache Software Foundation. All rights reserved.