|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.flume.sink.hbase.SimpleHbaseEventSerializer
public class SimpleHbaseEventSerializer
A simple serializer that returns puts from an event, by writing the event body into it. The headers are discarded. It also updates a row in hbase which acts as an event counter. 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.
Nested Class Summary | |
---|---|
static class |
SimpleHbaseEventSerializer.KeyType
|
Constructor Summary | |
---|---|
SimpleHbaseEventSerializer()
|
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public SimpleHbaseEventSerializer()
Method Detail |
---|
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 guarrantees 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
public 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
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |