public enum SubApplicationColumnPrefix extends Enum<SubApplicationColumnPrefix> implements ColumnPrefix<SubApplicationTable>
| Enum Constant and Description |
|---|
CONFIG
Config column stores configuration with config key as the column name.
|
EVENT
Lifecycle events for an entity.
|
INFO
To store TimelineEntity info values.
|
IS_RELATED_TO
To store TimelineEntity getIsRelatedToEntities values.
|
METRIC
Metrics are stored with the metric name as the column name.
|
RELATES_TO
To store TimelineEntity getRelatesToEntities values.
|
| Modifier and Type | Method and Description |
|---|---|
byte[] |
getColumnFamilyBytes()
Returns column family name(as bytes) associated with this column prefix.
|
String |
getColumnPrefix() |
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<SubApplicationTable> tableMutator,
byte[] qualifier,
Long timestamp,
Object inputValue,
Attribute... attributes)
Sends a Mutation to the table.
|
void |
store(byte[] rowKey,
TypedBufferedMutator<SubApplicationTable> tableMutator,
String qualifier,
Long timestamp,
Object inputValue,
Attribute... attributes)
Sends a Mutation to the table.
|
static SubApplicationColumnPrefix |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SubApplicationColumnPrefix[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubApplicationColumnPrefix IS_RELATED_TO
public static final SubApplicationColumnPrefix RELATES_TO
public static final SubApplicationColumnPrefix INFO
public static final SubApplicationColumnPrefix EVENT
public static final SubApplicationColumnPrefix CONFIG
public static final SubApplicationColumnPrefix METRIC
public static SubApplicationColumnPrefix[] values()
for (SubApplicationColumnPrefix c : SubApplicationColumnPrefix.values()) System.out.println(c);
public static SubApplicationColumnPrefix valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getColumnPrefix()
public byte[] getColumnPrefixBytes(byte[] qualifierPrefix)
getColumnPrefixBytes in interface ColumnPrefix<SubApplicationTable>qualifierPrefix - Column qualifier or prefix of qualifier.public byte[] getColumnPrefixBytes(String qualifierPrefix)
getColumnPrefixBytes in interface ColumnPrefix<SubApplicationTable>qualifierPrefix - Column qualifier or prefix of qualifier.public byte[] getColumnFamilyBytes()
ColumnPrefixgetColumnFamilyBytes in interface ColumnPrefix<SubApplicationTable>public ValueConverter getValueConverter()
ColumnPrefixgetValueConverter in interface ColumnPrefix<SubApplicationTable>ValueConverter implementation.public void store(byte[] rowKey,
TypedBufferedMutator<SubApplicationTable> tableMutator,
String qualifier,
Long timestamp,
Object inputValue,
Attribute... attributes)
throws IOException
ColumnPrefixstore in interface ColumnPrefix<SubApplicationTable>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.inputValue - the value to write to the rowKey and column qualifier.
Nothing gets written when null.attributes - attributes for the mutation that are used by the
coprocessor to set/read the cell tags.IOException - if there is any exception encountered while doing
store operation(sending mutation to the table).public void store(byte[] rowKey,
TypedBufferedMutator<SubApplicationTable> tableMutator,
byte[] qualifier,
Long timestamp,
Object inputValue,
Attribute... attributes)
throws IOException
ColumnPrefixstore in interface ColumnPrefix<SubApplicationTable>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.inputValue - the value to write to the rowKey and column qualifier.
Nothing gets written when null.attributes - attributes for the mutation that are used by the
coprocessor to set/read the cell tags.IOException - if there is any exception encountered while doing
store operation(sending mutation to the table).public Object readResult(org.apache.hadoop.hbase.client.Result result, String qualifier) throws IOException
ColumnPrefixCell.readResult in interface ColumnPrefix<SubApplicationTable>result - Cannot be nullqualifier - column qualifier. Nothing gets read when null.IOException - if there is any exception encountered while reading
result.public <K> Map<K,Object> readResults(org.apache.hadoop.hbase.client.Result result, KeyConverter<K> keyConverter) throws IOException
readResults in interface ColumnPrefix<SubApplicationTable>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.public <K,V> NavigableMap<K,NavigableMap<Long,V>> readResultsWithTimestamps(org.apache.hadoop.hbase.client.Result result, KeyConverter<K> keyConverter) throws IOException
readResultsWithTimestamps in interface ColumnPrefix<SubApplicationTable>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.Copyright © 2018 Apache Software Foundation. All Rights Reserved.