|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use FilterBase | |
---|---|
org.apache.hadoop.hbase.filter | Provides row-level filters applied to HRegion scan results during calls to
ResultScanner.next() . |
Uses of FilterBase in org.apache.hadoop.hbase.filter |
---|
Subclasses of FilterBase in org.apache.hadoop.hbase.filter | |
---|---|
class |
ColumnCountGetFilter
Simple filter that returns first N columns on row only. |
class |
ColumnPaginationFilter
A filter, based on the ColumnCountGetFilter, takes two arguments: limit and offset. |
class |
ColumnPrefixFilter
This filter is used for selecting only those keys with columns that matches a particular prefix. |
class |
CompareFilter
This is a generic filter to be used to filter by comparison. |
class |
DependentColumnFilter
A filter for adding inter-column timestamp matching Only cells with a correspondingly timestamped entry in the target column will be retained Not compatible with Scan.setBatch as operations need full rows for correct filtering |
class |
FamilyFilter
This filter is used to filter based on the column family. |
class |
FirstKeyOnlyFilter
A filter that will only return the first KV from each row. |
class |
InclusiveStopFilter
A Filter that stops after the given row. |
class |
KeyOnlyFilter
A filter that will only return the key component of each KV (the value will be rewritten as empty). |
class |
PageFilter
Implementation of Filter interface that limits results to a specific page size. |
class |
PrefixFilter
Pass results that have same row prefix. |
class |
QualifierFilter
This filter is used to filter based on the column qualifier. |
class |
RowFilter
This filter is used to filter based on the key. |
class |
SingleColumnValueExcludeFilter
A Filter that checks a single column value, but does not emit the
tested column. |
class |
SingleColumnValueFilter
This filter is used to filter cells based on value. |
class |
SkipFilter
A wrapper filter that filters an entire row if any of the KeyValue checks do not pass. |
class |
TimestampsFilter
Filter that returns only cells whose timestamp (version) is in the specified list of timestamps (versions). |
class |
ValueFilter
This filter is used to filter based on column value. |
class |
WhileMatchFilter
A wrapper filter that returns true from WhileMatchFilter.filterAllRemaining() as soon
as the wrapped filters Filter.filterRowKey(byte[], int, int) ,
Filter.filterKeyValue(org.apache.hadoop.hbase.KeyValue) ,
Filter.filterRow() or
Filter.filterAllRemaining() methods
returns true. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |