You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@flume.apache.org by beeshma r <be...@gmail.com> on 2015/08/05 18:52:42 UTC

Flume got stopped with lifecycle.LifecycleSupervisor

Hi
 i am trying to sink data from twitter source .

This is my flume.conf

#source
###############################################################
TwitterAgent.sources = Twitter
TwitterAgent.channels = MemChannel
TwitterAgent.sinks = HbaseOut
TwitterAgent.sources.Twitter.type=MyTwitterSourceForFlume
TwitterAgent.sources.Twitter.channels = MemChannel
###############################################################
#chennal
###############################################################
TwitterAgent.channels.MemChannel.type = memory
TwitterAgent.channels.MemChannel.capacity = 10000
TwitterAgent.channels.MemChannel.transactionCapacity = 100
###############################################################
# HBase sink config
###############################################################
TwitterAgent.sinks.HbaseOut.type =
org.apache.flume.sink.hbase.AsyncHBaseSink
TwitterAgent.sinks.HbaseOut.channel =MemChannel
TwitterAgent.sinks.HbaseOut.table=Fallowers_table
TwitterAgent.sinks.HbaseOut.columnFamily=Fallowers_det
TwitterAgent.sinks.HbaseOut.batchSize = 5000
TwitterAgent.sinks.HbaseOut.serializer = TwitterSplittingSerializer


ConsumerKey,ConsumerSecret,AccessToken and AuthAccessTokenSecret hardcoded
in Source part

 Here issue is flume process stopped with Info

15/08/04 10:11:59 INFO lifecycle.LifecycleSupervisor: Stopping
lifecycle supervisor 10

Here i attached log from flume run

is there any configuration issue with flume.conf? or issue with hbase
serializer?

So how do i debug this ?