public interface ColumnPrefix<T>
| Modifier and Type | Method and Description |
|---|---|
byte[] |
getColumnFamilyBytes()
Returns column family name(as bytes) associated with this column prefix.
|
byte[] |
getColumnPrefixBytes(byte[] qualifierPrefix) |
byte[] |
getColumnPrefixBytes(String qualifierPrefix) |
ValueConverter |
getValueConverter()
Returns value converter implementation associated with this column prefix.
|
Object |
readResult(org.apache.hadoop.hbase.client.Result result,
String qualifier)
Get the latest version of this specified column.
|
<K> Map<K,Object> |
readResults(org.apache.hadoop.hbase.client.Result result,
KeyConverter<K> keyConverter) |
<K,V> NavigableMap<K,NavigableMap<Long,V>> |
readResultsWithTimestamps(org.apache.hadoop.hbase.client.Result result,
KeyConverter<K> keyConverter) |
void |
store(byte[] rowKey,
TypedBufferedMutator<T> tableMutator,
byte[] qualifier,
Long timestamp,
Object inputValue,
Attribute... attributes)
Sends a Mutation to the table.
|
void |
store(byte[] rowKey,
TypedBufferedMutator<T> tableMutator,
String qualifier,
Long timestamp,
Object inputValue,
Attribute... attributes)
Sends a Mutation to the table.
|
void store(byte[] rowKey,
TypedBufferedMutator<T> tableMutator,
byte[] qualifier,
Long timestamp,
Object inputValue,
Attribute... attributes)
throws IOException
rowKey - identifying the row to write. Nothing gets written when null.tableMutator - used to modify the underlying HBase table. Caller is
responsible to pass a mutator for the table that actually has this
column.qualifier - column qualifier. Nothing gets written when null.timestamp - version timestamp. When null the server timestamp will be
used.attributes - attributes for the mutation that are used by the
coprocessor to set/read the cell tags.inputValue - the value to write to the rowKey and column qualifier.
Nothing gets written when null.IOException - if there is any exception encountered while doing
store operation(sending mutation to the table).void store(byte[] rowKey,
TypedBufferedMutator<T> tableMutator,
String qualifier,
Long timestamp,
Object inputValue,
Attribute... attributes)
throws IOException
rowKey - identifying the row to write. Nothing gets written when null.tableMutator - used to modify the underlying HBase table. Caller is
responsible to pass a mutator for the table that actually has this
column.qualifier - column qualifier. Nothing gets written when null.timestamp - version timestamp. When null the server timestamp will be
used.attributes - attributes for the mutation that are used by the
coprocessor to set/read the cell tags.inputValue - the value to write to the rowKey and column qualifier.
Nothing gets written when null.IOException - if there is any exception encountered while doing
store operation(sending mutation to the table).Object readResult(org.apache.hadoop.hbase.client.Result result, String qualifier) throws IOException
Cell.result - Cannot be nullqualifier - column qualifier. Nothing gets read when null.IOException - if there is any exception encountered while reading
result.<K> Map<K,Object> readResults(org.apache.hadoop.hbase.client.Result result, KeyConverter<K> keyConverter) throws IOException
K - identifies the type of key converter.result - from which to read columns.keyConverter - used to convert column bytes to the appropriate key
typeIOException - if there is any exception encountered while reading
results.<K,V> NavigableMap<K,NavigableMap<Long,V>> readResultsWithTimestamps(org.apache.hadoop.hbase.client.Result result, KeyConverter<K> keyConverter) throws IOException
K - identifies the type of key converter.V - the type of the values. The values will be cast into that type.result - from which to reads data with timestamps.keyConverter - used to convert column bytes to the appropriate key
type.IOException - if there is any exception encountered while reading
result.byte[] getColumnPrefixBytes(String qualifierPrefix)
qualifierPrefix - Column qualifier or prefix of qualifier.byte[] getColumnPrefixBytes(byte[] qualifierPrefix)
qualifierPrefix - Column qualifier or prefix of qualifier.byte[] getColumnFamilyBytes()
ValueConverter getValueConverter()
ValueConverter implementation.Copyright © 2018 Apache Software Foundation. All Rights Reserved.