|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.hadoop.hbase.filter.PageRowFilter
public class PageRowFilter
Implementation of RowFilterInterface that limits results to a specific page size. It terminates scanning once the number of filter-passed results is >= the given page size.
Note that this filter cannot guarantee that the number of results returned to a client are <= page size. This is because the filter is applied separately on different region servers. It does however optimize the scan of individual HRegions by making sure that the page size is never exceeded locally.
| Constructor Summary | |
|---|---|
PageRowFilter()
Default constructor, filters nothing. |
|
PageRowFilter(long pageSize)
Constructor that takes a maximum page size. |
|
| Method Summary | |
|---|---|
boolean |
filter(Text rowKey)
Filters on just a row key. |
boolean |
filter(Text rowKey,
Text colKey,
byte[] data)
Filters on row key and/or a column key. |
boolean |
filterAllRemaining()
Determines if the filter has decided that all remaining results should be filtered (skipped). |
boolean |
filterNotNull(TreeMap<Text,byte[]> columns)
Filters a row if: 1) The given row (@param columns) has a columnKey expected to be null AND the value associated with that columnKey is non-null. |
boolean |
processAlways()
Returns whether or not the filter should always be processed in any filtering call. |
void |
readFields(DataInput in)
Deserialize the fields of this object from in. |
void |
reset()
Resets the state of the filter. |
void |
rowProcessed(boolean filtered,
Text rowKey)
Called to let filter know the final decision (to pass or filter) on a given row. |
void |
validate(Text[] columns)
Validates that this filter applies only to a subset of the given columns. |
void |
write(DataOutput out)
Serialize the fields of this object to out. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public PageRowFilter()
public PageRowFilter(long pageSize)
pageSize - Maximum result size.| Method Detail |
|---|
public void validate(Text[] columns)
validate in interface RowFilterInterfacepublic void reset()
reset in interface RowFilterInterface
public void rowProcessed(boolean filtered,
Text rowKey)
rowProcessed in interface RowFilterInterfaceRowFilterSetpublic boolean processAlways()
processAlways in interface RowFilterInterfacepublic boolean filterAllRemaining()
filterAllRemaining in interface RowFilterInterfacepublic boolean filter(Text rowKey)
filter in interface RowFilterInterface
public boolean filter(Text rowKey,
Text colKey,
byte[] data)
filter in interface RowFilterInterfacerowKey - row key to filter on. May be null for no filtering of row key.colKey - column whose data will be filtereddata - column value
public boolean filterNotNull(TreeMap<Text,byte[]> columns)
filterNotNull in interface RowFilterInterface
public void readFields(DataInput in)
throws IOException
in.
For efficiency, implementations should attempt to re-use storage in the existing object where possible.
readFields in interface Writablein - DataInput to deseriablize this object from.
IOException
public void write(DataOutput out)
throws IOException
out.
write in interface Writableout - DataOuput to serialize this object into.
IOException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||