- First step is to create test table in HBase with CF1 as column family. Everytime Flume gets a event it will write to HBase in test table in CF1 column family
create 'test','CF1'
-
Create Flume configuration file that looks like this, I am using HBase sink with
SimpleHbaseEventSerializer
as Event Serializer. Note that i am assuming that this is unsecured cluster (Sandbox), but if you have secured cluster you should follow steps mentioned in Configure a Secure HBase SinkThis file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersagent1.sources = netcat1 agent1.sinks = hbase agent1.channels =memory1 agent1.sources.netcat1.type = netcat agent1.sources.netcat1.bind = localhost agent1.sources.netcat1.port = 44444 agent1.sinks.hbase.type=hbase agent1.sinks.hbase.table=test agent1.sinks.hbase.columnFamily=CF1 agent1.sinks.hbase.serializer=org.apache.flume.sink.hbase.SimpleHbaseEventSerializer agent1.channels.memory1.type = memory agent1.channels.memory1.capacity = 1000 agent1.channels.memory1.transactionCapacity = 100 agent1.sources.netcat1.channels = memory1 agent1.sinks.hbase.channel=memory1 - Start the Flume server with the following command
bin/flume-ng agent --conf conf --conf-file conf/netcat-hbase.properties --name agent1 -Dflume.root.logger=DEBUG,console
- Now open the netcat client on port 44444 and send some messages to flume
- If you query HBase test table, you should see the messages that were published to netcat
How to use HBase sink with Flume
I wanted to figure out how to use HBase as target for flume, so i created this sample configuration which reads events from netcat and writes them to HBase.
Subscribe to:
Post Comments (Atom)
2 comments:
Simple and Nice!!
Thanks for info....
Website development in Bangalore
Post a Comment