2016-08-24 8 views
0

Flume-ngを使用して128MBのログ情報を取得し、HDFSのファイルに入れようとしています。しかし、HDFSローリング・オプションは機能しません。 Flume-ngは秒ごとにログファイルを送信します。 flume.confファイルを修正するにはどうしたらいいですか?flume hdfs rollSizeがマルチチャネルおよびマルチシンクで動作しない

agent01.sources = avroGenSrc 
agent01.channels = memoryChannel hdfsChannel 
agent01.sinks = fileSink hadoopSink 

# For each one of the sources, the type is defined 
agent01.sources.avroGenSrc.type = avro 
agent01.sources.avroGenSrc.bind = dev-hadoop03.ncl 
agent01.sources.avroGenSrc.port = 3333 

# The channel can be defined as follows. 
agent01.sources.avroGenSrc.channels = memoryChannel hdfsChannel 

# Each sink's type must be defined 
agent01.sinks.fileSink.type = file_roll 
agent01.sinks.fileSink.sink.directory = /home1/irteam/flume/data 
agent01.sinks.fileSink.sink.rollInterval = 3600 
agent01.sinks.fileSink.sink.batchSize = 100 

#Specify the channel the sink should use 
agent01.sinks.fileSink.channel = memoryChannel 



agent01.sinks.hadoopSink.type = hdfs 
agent01.sinks.hadoopSink.hdfs.useLocalTimeStamp = true 
agent01.sinks.hadoopSink.hdfs.path = hdfs://dev-hadoop04.ncl:9000/user/hive/warehouse/raw_logs/year=%Y/month=%m/day=%d 
agent01.sinks.hadoopSink.hdfs.filePrefix = AccessLog.%Y-%m-%d.%Hh 
agent01.sinks.hadoopSink.hdfs.fileType = DataStream 
agent01.sinks.hadoopSink.hdfs.writeFormat = Text 
agent01.sinks.hadoopSink.hdfs.rollInterval = 0 
agent01.sinks.hadoopSink.hdfs.rollSize = 134217728 
agent01.sinks.hadoopSink.hdfs.rollCount = 0 

#Specify the channel the sink should use 
agent01.sinks.hadoopSink.channel = hdfsChannel 


# Each channel's type is defined. 
agent01.channels.memoryChannel.type = memory 
agent01.channels.hdfsChannel.type = memory 

# Other config values specific to each type of channel(sink or source) 
# can be defined as well 
# In this case, it specifies the capacity of the memory channel 
agent01.channels.memoryChannel.capacity = 100000 
agent01.channels.memoryChannel.transactionCapacity = 10000 

agent01.channels.hdfsChannel.capacity = 100000 
agent01.channels.hdfsChannel.transactionCapacity = 10000 

答えて

0

この解決策が見つかりました。 dfs.replication mismatchがこの問題を引き起こします。私のHadoopのconfで

hadoop-2.7.2/etc/hadoop/hdfs-site.xml

<property> 
    <name>dfs.replication</name> 
    <value>3</value> 
</property> 

は私が

<property> 
    <name>dfs.replication</name> 
    <value>2</value> 
</property> 

に変更するように、2つのデータノードがあると私はflume.conf

agent01.sinks.hadoopSink.hdfs.minBlockReplicas = 2 

感謝のために設定を追加します

https://qnalist.com/questions/5015704/hit-max-consecutive-under-replication-rotations-error

Flume HDFS sink keeps rolling small files

関連する問題