【零】Flume的"实时监控目录下的多个追加文件"案例实操

一、需求

使用Flume监听整个目录的实时追加文件,并上传至HDFS

【零】Flume的

二、步骤

2.1 创建配置文件

在flume下创建的job目录下创建配置文件flume-taildir-hdfs.conf,添加内容如下:

a3.sources = r3
a3.sinks = k3
a3.channels = c3

# Describe/configure the source
a3.sources.r3.type = TAILDIR
# 记录进度
a3.sources.r3.positionFile = /opt/module/flume/tail_dir.json
a3.sources.r3.filegroups = f1 f2
# 正则表达式,监控目录下包含结尾为file和log的文件
a3.sources.r3.filegroups.f1 = /opt/module/flume/files/.*file.*
a3.sources.r3.filegroups.f2 = /opt/module/flume/files/.*log.*

# Describe the sink
a3.sinks.k3.type = hdfs
a3.sinks.k3.hdfs.path = hdfs://hadoop102:9000/flume/upload2/%Y%m%d/%H
#上传文件的前缀
a3.sinks.k3.hdfs.filePrefix = upload-
#是否按照时间滚动文件夹
a3.sinks.k3.hdfs.round = true
#多少时间单位创建一个新的文件夹
a3.sinks.k3.hdfs.roundValue = 1
#重新定义时间单位
a3.sinks.k3.hdfs.roundUnit = hour
#是否使用本地时间戳
a3.sinks.k3.hdfs.useLocalTimeStamp = true
#积攒多少个Event才flush到HDFS一次
a3.sinks.k3.hdfs.batchSize = 100
#设置文件类型,可支持压缩
a3.sinks.k3.hdfs.fileType = DataStream
#多久生成一个新的文件
a3.sinks.k3.hdfs.rollInterval = 60
#设置每个文件的滚动大小大概是128M
a3.sinks.k3.hdfs.rollSize = 134217700
#文件的滚动与Event数量无关
a3.sinks.k3.hdfs.rollCount = 0

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

# Bind the source and sink to the channel
a3.sources.r3.channels = c3
a3.sinks.k3.channel = c3

【零】Flume的

2.2 开启hadoop集群

【零】Flume的

2.3 启动监听

bin/flume-ng agent -c conf/ -n a3 -f job/flume-taildir-hdfs.conf

【零】Flume的

2.4 传输数据

在flume下创建files文件夹 并在下面追加新文件file1.txt
echo hello >> file1.txt

【零】Flume的

2.5 查看结果

【零】Flume的

Taildir Source维护了一个json格式的position File,其会定期的往position File中更新每个文件读取到的最新的位置,因此能够实现断点续传。Position File的格式如下:

{"inode":2496272,"pos":12,"file":"/opt/module/flume/files/file1.txt"}
{"inode":2496275,"pos":12,"file":"/opt/module/flume/files/file2.txt"}

Linux中储存文件元数据的区域就叫做inode,每个inode都有一个号码,操作系统用inode号码来识别不同的文件,Unix/Linux系统内部不使用文件名,而使用inode号码来识别文件。

三、Life

“我又想到了当年在山海的那些日子,那些本非你所愿,却仍然要去面对的日子里,那些困住你,心头却仍然有一丝不切实际期望的日子。就像是累了一整天,最后换来在街上坐下来吃的一盒饭。那一盒饭是什么味道的,没有经历过的人,永远不知道。但经历过的人,会知道那是酸的,是会流眼泪的。”

【零】Flume的

你可能感兴趣的:(零,大数据,hadoop,linux)