#agent1 name
agent1.sources=source1
agent1.sinks=sink1
agent1.channels=channel1
#spooling directory
#set source1
agent1.sources
.source1.type=spooldir
agent1.sources
.source1.spooldir=/usr/local/hadoop/dir/logdfs
agent1.sources
.source1.channels=channel1
agent1.sources
.source1.fileheader = false
agent1.sources
.source1.interceptors = i1
agent1.sources
.source1.interceptors
.i1.type = timestamp
#set sink1
agent1.sinks
.sink1.type=hdfs
agent1.sinks
.sink1.hdfs
.path=/usr/local/hdfs/flume/logdfs
agent1.sinks
.sink1.hdfs
.filetype=datastream
agent1.sinks
.sink1.hdfs
.writeformat=text
agent1.sinks
.sink1.hdfs
.rollinterval=1
agent1.sinks
.sink1.channel=channel1
agent1.sinks
.sink1.hdfs
.fileprefix=%y-%m-%d
#set channel1
agent1.channels
.channel1.type=file
agent1.channels
.channel1.checkpointdir=/usr/local/hadoop/dir/logdfstmp/point
agent1.channels
.channel1.datadirs=/usr/local/hadoop/dir/logdfstmp
4:修改flume-env.sh檔案新增jdk環境變數
5:start-dfs.sh 啟動hdfs服務 (注意hdfs集群中的任何一台伺服器上安裝flume 即可)
6:啟動flume
flume-ng agent -n agent1 -c conf -f flume-conf.properties -dflume.root.logger=debug,console
注意flume-conf.properties 需要新增絕對路徑
7:啟動成功後使用vi命令向/usr/local/hadoop/dir/logdfs 目錄中模擬新增檔案
vi a.txt 新增內容後
檔案多了字尾
然後開啟hdfs目錄檢視
再次新增檔案到/usr/local/hadoop/dir/logdfs 目錄下 則flume 會將此新增檔案存放在hdfs上面
Hadoop之Flume採集檔案到hdfs
內容如下 定義三大元件的名稱,myagent可以自己定義 myagent.sources source1 myagent.sinks sink1 myagent.channels channel1 配置source元件 myagent.sources.source1.type spooldir 定義...
Flume 監控目錄檔案 spooldir
flume應用場景中監控某個目錄下的檔案進行讀取使用的很多,flume通過source型別為spooldir來進行監控目錄下檔案,當新增檔案時,flume可將檔案進行讀取,開發者只需要編寫對應的檔案序列化器即可將讀取的檔案轉存至hbase hdfs 或者其他希望的資料格式。test agent.so...
Flume採集目錄及檔案到HDFS案例
使用flume採集目錄需要啟動hdfs集群 vi spool hdfs.conf name the components on this agent a1.sources r1 a1.sinks k1 a1.channels c1 describe configure the source 注意 不...