|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Cell | |
---|---|
org.apache.hadoop.hbase.client | |
org.apache.hadoop.hbase.client.transactional | This package provides support for atomic transactions. |
org.apache.hadoop.hbase.filter | Provides row-level filters applied to HRegion scan results during calls to Scanner.next() . |
org.apache.hadoop.hbase.io | |
org.apache.hadoop.hbase.ipc | Tools to help define network clients and servers. |
org.apache.hadoop.hbase.regionserver | |
org.apache.hadoop.hbase.regionserver.transactional | |
org.apache.hadoop.hbase.rest | Provides an HBase REST service. |
org.apache.hadoop.hbase.thrift | Provides an HBase Thrift service. |
org.apache.hadoop.hbase.util |
Uses of Cell in org.apache.hadoop.hbase.client |
---|
Methods in org.apache.hadoop.hbase.client that return Cell | |
---|---|
Cell |
HTable.get(byte[] row,
byte[] column)
Get a single value for the specified row and column |
Cell[] |
HTable.get(byte[] row,
byte[] column,
int numVersions)
Get the specified number of versions of the specified row and column |
Cell[] |
HTable.get(byte[] row,
byte[] column,
long timestamp,
int numVersions)
Get the specified number of versions of the specified row and column with the specified timestamp. |
Cell |
HTable.get(String row,
String column)
Get a single value for the specified row and column |
Cell[] |
HTable.get(String row,
String column,
int numVersions)
Get a single value for the specified row and column |
Cell[] |
HTable.get(String row,
String column,
long timestamp,
int numVersions)
Get the specified number of versions of the specified row and column with the specified timestamp. |
Uses of Cell in org.apache.hadoop.hbase.client.transactional |
---|
Methods in org.apache.hadoop.hbase.client.transactional that return Cell | |
---|---|
Cell |
TransactionalTable.get(TransactionState transactionState,
byte[] row,
byte[] column)
Get a single value for the specified row and column |
Cell[] |
TransactionalTable.get(TransactionState transactionState,
byte[] row,
byte[] column,
int numVersions)
Get the specified number of versions of the specified row and column |
Cell[] |
TransactionalTable.get(TransactionState transactionState,
byte[] row,
byte[] column,
long timestamp,
int numVersions)
Get the specified number of versions of the specified row and column with the specified timestamp. |
Uses of Cell in org.apache.hadoop.hbase.filter |
---|
Method parameters in org.apache.hadoop.hbase.filter with type arguments of type Cell | |
---|---|
boolean |
WhileMatchRowFilter.filterRow(SortedMap<byte[],Cell> columns)
|
boolean |
StopRowFilter.filterRow(SortedMap<byte[],Cell> columns)
Because StopRowFilter does not examine column information, this method defaults to calling filterAllRemaining(). |
boolean |
RowFilterSet.filterRow(SortedMap<byte[],Cell> columns)
|
boolean |
RowFilterInterface.filterRow(SortedMap<byte[],Cell> columns)
Filter on the fully assembled row. |
boolean |
RegExpRowFilter.filterRow(SortedMap<byte[],Cell> columns)
|
boolean |
PrefixRowFilter.filterRow(SortedMap<byte[],Cell> columns)
|
boolean |
PageRowFilter.filterRow(SortedMap<byte[],Cell> columns)
|
boolean |
ColumnValueFilter.filterRow(SortedMap<byte[],Cell> columns)
|
void |
RegExpRowFilter.setColumnFilters(Map<byte[],Cell> columnFilter)
Deprecated. Column filtering has been replaced by ColumnValueFilter
Set column filters for a number of columns. |
Constructor parameters in org.apache.hadoop.hbase.filter with type arguments of type Cell | |
---|---|
RegExpRowFilter(String rowKeyRegExp,
Map<byte[],Cell> columnFilter)
Deprecated. Column filtering has been replaced by ColumnValueFilter
Constructor that takes a row key regular expression to filter on. |
Uses of Cell in org.apache.hadoop.hbase.io |
---|
Methods in org.apache.hadoop.hbase.io that return Cell | |
---|---|
Cell |
RowResult.get(byte[] column)
Get the Cell that corresponds to column |
Cell |
RowResult.get(Object key)
|
Cell |
RowResult.get(String key)
Get the Cell that corresponds to column, using a String key |
Cell |
RowResult.Entry.getValue()
|
Cell |
RowResult.put(byte[] key,
Cell value)
|
Cell |
RowResult.remove(Object key)
|
Cell |
RowResult.Entry.setValue(Cell c)
|
Methods in org.apache.hadoop.hbase.io that return types with arguments of type Cell | |
---|---|
Set<Map.Entry<byte[],Cell>> |
RowResult.entrySet()
|
SortedMap<byte[],Cell> |
RowResult.headMap(byte[] toKey)
|
SortedMap<byte[],Cell> |
RowResult.subMap(byte[] fromKey,
byte[] toKey)
|
SortedMap<byte[],Cell> |
RowResult.tailMap(byte[] fromKey)
|
Collection<Cell> |
RowResult.values()
|
Methods in org.apache.hadoop.hbase.io with parameters of type Cell | |
---|---|
Cell |
RowResult.put(byte[] key,
Cell value)
|
Cell |
RowResult.Entry.setValue(Cell c)
|
Constructor parameters in org.apache.hadoop.hbase.io with type arguments of type Cell | |
---|---|
RowResult(byte[] row,
HbaseMapWritable<byte[],Cell> m)
Create a RowResult from a row and Cell map |
Uses of Cell in org.apache.hadoop.hbase.ipc |
---|
Methods in org.apache.hadoop.hbase.ipc that return Cell | |
---|---|
Cell[] |
HRegionInterface.get(byte[] regionName,
byte[] row,
byte[] column,
long timestamp,
int numVersions)
Get the specified number of versions of the specified row and column with the specified timestamp. |
Cell |
TransactionalRegionInterface.get(long transactionId,
byte[] regionName,
byte[] row,
byte[] column)
Retrieve a single value from the specified region for the specified row and column keys |
Cell[] |
TransactionalRegionInterface.get(long transactionId,
byte[] regionName,
byte[] row,
byte[] column,
int numVersions)
Get the specified number of versions of the specified row and column |
Cell[] |
TransactionalRegionInterface.get(long transactionId,
byte[] regionName,
byte[] row,
byte[] column,
long timestamp,
int numVersions)
Get the specified number of versions of the specified row and column with the specified timestamp. |
Uses of Cell in org.apache.hadoop.hbase.regionserver |
---|
Methods in org.apache.hadoop.hbase.regionserver that return Cell | |
---|---|
Cell[] |
HRegionServer.get(byte[] regionName,
byte[] row,
byte[] column,
long timestamp,
int numVersions)
|
Cell[] |
HRegion.get(byte[] row,
byte[] column,
long ts,
int nv)
Fetch multiple versions of a single data item, with timestamp. |
Methods in org.apache.hadoop.hbase.regionserver that return types with arguments of type Cell | |
---|---|
HbaseMapWritable<byte[],Cell> |
HRegion.getFull(byte[] row,
Set<byte[]> columns,
long ts,
int numVersions,
Integer lockid)
Fetch all the columns for the indicated row at a specified timestamp. |
Method parameters in org.apache.hadoop.hbase.regionserver with type arguments of type Cell | |
---|---|
boolean |
InternalScanner.next(HStoreKey key,
SortedMap<byte[],Cell> results)
Grab the next row's worth of values. |
abstract boolean |
HAbstractScanner.next(HStoreKey key,
SortedMap<byte[],Cell> results)
|
Uses of Cell in org.apache.hadoop.hbase.regionserver.transactional |
---|
Methods in org.apache.hadoop.hbase.regionserver.transactional that return Cell | |
---|---|
Cell |
TransactionalRegion.get(long transactionId,
byte[] row,
byte[] column)
Fetch a single data item. |
Cell |
TransactionalRegionServer.get(long transactionId,
byte[] regionName,
byte[] row,
byte[] column)
|
Cell[] |
TransactionalRegionServer.get(long transactionId,
byte[] regionName,
byte[] row,
byte[] column,
int numVersions)
|
Cell[] |
TransactionalRegionServer.get(long transactionId,
byte[] regionName,
byte[] row,
byte[] column,
long timestamp,
int numVersions)
|
Cell[] |
TransactionalRegion.get(long transactionId,
byte[] row,
byte[] column,
int numVersions)
Fetch multiple versions of a single data item |
Cell[] |
TransactionalRegion.get(long transactionId,
byte[] row,
byte[] column,
long timestamp,
int numVersions)
Fetch multiple versions of a single data item, with timestamp. |
Methods in org.apache.hadoop.hbase.regionserver.transactional that return types with arguments of type Cell | |
---|---|
Map<byte[],Cell> |
TransactionalRegion.getFull(long transactionId,
byte[] row,
Set<byte[]> columns,
long ts)
Fetch all the columns for the indicated row at a specified timestamp. |
Uses of Cell in org.apache.hadoop.hbase.rest |
---|
Methods in org.apache.hadoop.hbase.rest with parameters of type Cell | |
---|---|
protected void |
GenericHandler.outputCellXml(org.znerd.xmlenc.XMLOutputter outputter,
Cell c)
|
Method parameters in org.apache.hadoop.hbase.rest with type arguments of type Cell | |
---|---|
protected void |
GenericHandler.outputColumnsXml(javax.servlet.http.HttpServletRequest request,
org.znerd.xmlenc.XMLOutputter outputter,
Map<byte[],Cell> m)
|
protected void |
GenericHandler.outputColumnsXml(org.znerd.xmlenc.XMLOutputter outputter,
Map<byte[],Cell> m)
|
Uses of Cell in org.apache.hadoop.hbase.thrift |
---|
Methods in org.apache.hadoop.hbase.thrift with parameters of type Cell | |
---|---|
static TCell |
ThriftUtilities.cellFromHBase(Cell in)
This utility method creates a new Thrift TCell "struct" based on an Hbase Cell object. |
Uses of Cell in org.apache.hadoop.hbase.util |
---|
Methods in org.apache.hadoop.hbase.util with parameters of type Cell | |
---|---|
static long |
Writables.cellToLong(Cell c)
|
static String |
Writables.cellToString(Cell c)
|
static HRegionInfo |
Writables.getHRegionInfo(Cell cell)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |