利用flume监控目录下生成文件的详细操作

  1. 先确认环境配置好,能正常监听!
  2. 新建目录:/root/logs2

利用flume监控目录下生成文件的详细操作_第1张图片

3.在/flume/conf目录下新建配置文件spooldir-hdfs.conf

# Name the components on this agent
a1.sources = r1
a1.sinks = k1
a1.channels = c1

# Describe/configure the source
a1.sources.r1.type = spooldir
a1.sources.r1.spoolDir = /root/logs2
a1.sources.r1.fileHeader = true

# Describe the sink
a1.sinks.k1.type = hdfs
a1.sinks.k1.channel = c1
a1.sinks.k1.hdfs.path = /flume/events/%y-%m-%d/%H%M/
a1.sinks.k1.hdfs.filePrefix = events-
a1.sinks.k1.hdfs.round = true
a1.sinks.k1.hdfs.roundValue = 10
a1.sinks.k1.hdfs.roundUnit = minute
a1.sinks.k1.hdfs.rollInterval = 3
a1.sinks.k1.hdfs.rollSize = 20
a1.sinks.k1.hdfs.rollCount = 5
a1.sinks.k1.hdfs.batchSize = 1
a1.sinks.k1.hdfs.useLocalTimeStamp = true
#生成的文件类型,默认是Sequencefile,可用DataStream,则为普通文本
a1.sinks.k1.hdfs.fileType = DataStream

# Use a channel which buffers events in memory
a1.channels.c1.type = memory
a1.channels.c1.capacity = 1000
a1.channels.c1.transactionCapacity = 100

# Bind the source and sink to the channel
a1.sources.r1.channels = c1
a1.sinks.k1.channel = c1

4.启动命令:

bin/flume-ng agent -c conf -f ./conf/spooldir-hdfs.conf -n a1 -Dflume.root.logger=INFO,console

利用flume监控目录下生成文件的详细操作_第2张图片

5.测试:向/root/logs2/中放文件

利用flume监控目录下生成文件的详细操作_第3张图片

6.可以看到正在监听...

利用flume监控目录下生成文件的详细操作_第4张图片

7.查看目录下的文件

利用flume监控目录下生成文件的详细操作_第5张图片

8.浏览器查看

利用flume监控目录下生成文件的详细操作_第6张图片

你可能感兴趣的:(利用flume监控目录下生成文件的详细操作)