1.创建配置文件
vim dir-hdfs.conf
#spooldir:flume中自带的读取目录的source,只要出现新文件就会被读走
#定义三大组件的名称
ag1.sources = source1
ag1.sinks = sink1
ag1.channels = channel1
# 配置source组件
ag1.sources.source1.type = spooldir
ag1.sources.source1.spoolDir =/root/log/
ag1.sources.source1.fileSuffix=.FINISHED
# 配置sink组件
ag1.sinks.sink1.type &