public class SimpleHbaseEventSerializer extends Object implements HbaseEventSerializer
Takes optional parameters:
rowPrefix: The prefix to be used. Default: default
incrementRow The row to increment. Default: incRow
suffix: uuid/random/timestamp.Default: uuid
Mandatory parameters:
cf:Column family.
Components that have no defaults and will not be used if null: payloadColumn: Which column to put payload in. If it is null, event data will not be written.
incColumn: Which column to increment. Null means no column is incremented.
Modifier and Type | Class and Description |
---|---|
static class |
SimpleHbaseEventSerializer.KeyType |
Constructor and Description |
---|
SimpleHbaseEventSerializer() |
Modifier and Type | Method and Description |
---|---|
void |
close() |
void |
configure(ComponentConfiguration conf) |
void |
configure(Context context)
Request the implementing class to (re)configure itself.
|
List<org.apache.hadoop.hbase.client.Row> |
getActions()
Get the actions that should be written out to hbase as a result of this
event.
|
List<org.apache.hadoop.hbase.client.Increment> |
getIncrements() |
void |
initialize(Event event,
byte[] cf)
Initialize the event serializer.
|
public void configure(Context context)
Configurable
Request the implementing class to (re)configure itself.
When configuration parameters are changed, they must be reflected by the component asap.
There are no thread safety guarantees on when configure might be called.
configure
in interface Configurable
public void configure(ComponentConfiguration conf)
configure
in interface ConfigurableComponent
public void initialize(Event event, byte[] cf)
HbaseEventSerializer
initialize
in interface HbaseEventSerializer
event
- Event to be written to HBasecf
- Column family to write topublic List<org.apache.hadoop.hbase.client.Row> getActions() throws FlumeException
HbaseEventSerializer
getActions
in interface HbaseEventSerializer
Row
which
are written as such to HBase.
0.92 increments do not implement Row, so this is not generic.FlumeException
public List<org.apache.hadoop.hbase.client.Increment> getIncrements()
getIncrements
in interface HbaseEventSerializer
public void close()
close
in interface HbaseEventSerializer
Copyright © 2009-2017 Apache Software Foundation. All Rights Reserved.