首页 > 代码库 > flume基本使用

flume基本使用

1. 在 flume/conf下建一个example文件:将下面的配置信息写到example文件中

#配置agent1表示代理名称agent1.sources=source1agent1.sinks=sink1agent1.channels=channel1#配置source1agent1.sources.source1.type=spooldir agent1.sources.source1.spoolDir=/usr/bigdata/flume/conf/test/hmbbs agent1.sources.source1.channels=channel1agent1.sources.source1.fileHeader = falseagent1.sources.source1.interceptors = i1agent1.sources.source1.interceptors.i1.type = timestamp#配置sink1agent1.sinks.sink1.type=hdfs agent1.sinks.sink1.hdfs.path=hdfs://hdp01:9000/flume/hmbbsagent1.sinks.sink1.hdfs.fileType=DataStreamagent1.sinks.sink1.hdfs.writeFormat=TEXTagent1.sinks.sink1.hdfs.rollInterval=1agent1.sinks.sink1.channel=channel1agent1.sinks.sink1.hdfs.filePrefix=%Y-%m-%d#配置channel1agent1.channels.channel1.type=fileagent1.channels.channel1.checkpointDir=/usr/bigdata/flume/conf/test/tmp123agent1.channels.channel1.dataDirs=/usr/bigdata/flume/conf/test/tmp

2.启动:[root@hadoop0 flume]# bin/flume-ng agent -n agent1 -c conf -f conf/example -Dflume.root.logger=INFO,console

  .............log............

 

3.cp文件到 “agent1.sources.source1.spoolDir” ,然后到hdfs查看flume收集的数据文件.

 

 

 

 

flume基本使用