Uses of Class
org.apache.hadoop.hbase.filter.FilterBase
Packages that use org.apache.hadoop.hbase.filter.FilterBase
Package
Description
Provides row-level filters applied to HRegion scan results during calls to
ResultScanner.next().-
Uses of org.apache.hadoop.hbase.filter.FilterBase in org.apache.hadoop.hbase.filter
Subclasses of org.apache.hadoop.hbase.filter.FilterBase in in org.apache.hadoop.hbase.filterModifier and TypeClassDescriptionclassorg.apache.hadoop.hbase.filter.ColumnCountGetFilterSimple filter that returns first N columns on row only.classorg.apache.hadoop.hbase.filter.ColumnPaginationFilterA filter, based on the ColumnCountGetFilter, takes two arguments: limit and offset.classorg.apache.hadoop.hbase.filter.ColumnPrefixFilterThis filter is used for selecting only those keys with columns that matches a particular prefix.classorg.apache.hadoop.hbase.filter.ColumnRangeFilterThis filter is used for selecting only those keys with columns that are between minColumn to maxColumn.classorg.apache.hadoop.hbase.filter.ColumnValueFilterDifferent fromSingleColumnValueFilterwhich returns an entire row when specified condition is matched,ColumnValueFilterreturn the matched cell only.classorg.apache.hadoop.hbase.filter.CompareFilterThis is a generic filter to be used to filter by comparison.classorg.apache.hadoop.hbase.filter.DependentColumnFilterA 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 filteringclassorg.apache.hadoop.hbase.filter.FamilyFilterThis filter is used to filter based on the column family.classorg.apache.hadoop.hbase.filter.FilterAllFilterfinal classorg.apache.hadoop.hbase.filter.FilterListImplementation ofFilterthat represents an ordered List of Filters which will be evaluated with a specified boolean operatorFilterList.Operator.MUST_PASS_ALL(AND) orFilterList.Operator.MUST_PASS_ONE(OR).classorg.apache.hadoop.hbase.filter.FilterListBaseBase class for FilterList.classorg.apache.hadoop.hbase.filter.FilterListWithANDFilterListWithAND represents an ordered list of filters which will be evaluated with an AND operator.classorg.apache.hadoop.hbase.filter.FilterListWithORFilterListWithOR represents an ordered list of filters which will be evaluated with an OR operator.classorg.apache.hadoop.hbase.filter.FirstKeyOnlyFilterA filter that will only return the first KV from each row.classorg.apache.hadoop.hbase.filter.FuzzyRowFilterThis is optimized version of a standard FuzzyRowFilter Filters data based on fuzzy row key.classorg.apache.hadoop.hbase.filter.InclusiveStopFilterA Filter that stops after the given row.classorg.apache.hadoop.hbase.filter.KeyOnlyFilterA filter that will only return the key component of each KV (the value will be rewritten as empty).classorg.apache.hadoop.hbase.filter.MultipleColumnPrefixFilterThis filter is used for selecting only those keys with columns that match any of the given prefixes.classorg.apache.hadoop.hbase.filter.MultiRowRangeFilterFilter to support scan multiple row key ranges.classorg.apache.hadoop.hbase.filter.PageFilterImplementation of Filter interface that limits results to a specific page size.classorg.apache.hadoop.hbase.filter.PrefixFilterPass results that have same row prefix.classorg.apache.hadoop.hbase.filter.QualifierFilterThis filter is used to filter based on the column qualifier.classorg.apache.hadoop.hbase.filter.RandomRowFilterA filter that includes rows based on a chance.classorg.apache.hadoop.hbase.filter.RowFilterThis filter is used to filter based on the key.classorg.apache.hadoop.hbase.filter.SingleColumnValueExcludeFilterAFilterthat checks a single column value, but does not emit the tested column.classorg.apache.hadoop.hbase.filter.SingleColumnValueFilterThis filter is used to filter cells based on value.classorg.apache.hadoop.hbase.filter.SkipFilterA wrapper filter that filters an entire row if any of the Cell checks do not pass.classorg.apache.hadoop.hbase.filter.TimestampsFilterFilter that returns only cells whose timestamp (version) is in the specified list of timestamps (versions).classorg.apache.hadoop.hbase.filter.ValueFilterThis filter is used to filter based on column value.classorg.apache.hadoop.hbase.filter.WhileMatchFilterA wrapper filter that returns true fromWhileMatchFilter.filterAllRemaining()as soon as the wrapped filtersFilter.filterRowKey(Cell),Filter.filterCell(org.apache.hadoop.hbase.Cell),Filter.filterRow()orFilter.filterAllRemaining()methods returns true.