Flume之生产正确的使用方式一(Singel Agent)

1.什么Flume?

Flume是一个分布式的、高可靠的、高可用的将大批量的不同数据源的日志数据收集、聚合、移动到数据中心(hdfs)进行存储的系统。即是日志采集汇总的工具

  • Logstash、FileBeat是ES栈的日志数据抽取工具,它们和Flume很类似,前者是轻量级、后者是重量级,若项目组使用的是ES栈技术,那完全可以使用前者取代Flume。
1.1版本选择
  • NG: 1.x的版本
  • OG:0.9.x的版本,不用管
    由于我使用的是CDH5.7.0,故选择flume-ng-1.6.0-cdh5.7.0版本,注意此1.6和社区的1.6有差别。
1.2Flume的优点:
  • 高速采集的数据并能够将数据以想要的文件格式以及压缩方式存储在hdfs上
  • 事务功能保证了数据在采集移动过程中数据不丢失
  • 部分Source保证了Fluem挂了后重启依旧能够继续在上一次采集点采集数据,数据真正的0丢失

2.Flume三大组件以及生产组合使用架构

友情提示,学习Flume就一个方法:上官网查词典

2.1Flume三大组件
  • Source(源端数据采集):Fluem提供了各种各样的Source、同时还提供了自定义的Source
  • Channel(临时存储聚合数据):主要用的是 memory channel和File chnannel(生产最常用),生产中channel的数据一定是要监控的,防止sink挂了,撑爆了channel。
  • Sink(移动数据到目标端):如hdfs、kafka、DB以及自定义的sink
2.2 经典框架
  • Fulum与Kafa区别:前者是数据采集工具后者是消息队列
  • Flume与Kafka经典组合框架: Flume 》Kafka》Stream
  • Flume agent框架
    单Agent:
    1
    串联Agent:
    2
    并联Agent(生产中最多的使用):
    3
    多sinkAgent(也很常见):
    4

3.Flume部署

3.1下载

10

3.2解压以及配置部署
# 解压
[hadoop@hadoop001 soft]$ ll flume-*
-rw-r--r--. 1 hadoop hadoop 67321333 May 31  2019 flume-ng-1.6.0-cdh5.7.0.tar.gz
[hadoop@hadoop001 soft]$ tar -zxvf flume-ng-1.6.0-cdh5.7.0.tar.gz  -C ~/app/
#修改配置文件,添加JAVA_HOME
[hadoop@hadoop001 soft]$ cd ~/app/apache-flume-1.6.0-cdh5.7.0-bin/
[hadoop@hadoop001 apache-flume-1.6.0-cdh5.7.0-bin]$ cp ~/app/apache-flume-1.6.0-cdh5.7.0-bin/conf/flume-env.sh.template ~/app/apache-flume-1.6.0-cdh5.7.0-bin/conf/flume-env.sh
[hadoop@hadoop001 apache-flume-1.6.0-cdh5.7.0-bin]$ vim ~/app/apache-flume-1.6.0-cdh5.7.0-bin/conf/flume-env.sh
export JAVA_HOME=/usr/java/jdk1.8.0_45
#添加环境变量
[hadoop@hadoop001 bin]$ soruce ~/.bash_profile
export FLUME_HOME=/home/hadoop/app/apache-flume-1.6.0-cdh5.7.0-bin
export PATH=$FLUME_HOME/bin:$PATH
[hadoop@hadoop001 bin]$ source ~/.bash_profile
[hadoop@hadoop001 bin]$ which flume-ng
~/app/apache-flume-1.6.0-cdh5.7.0-bin/bin/flume-ng

4.(初探)简单的控制台Agent配置使用案列

4.1Agent、Event概念
  • Flume的使用其实就是Source、Channel、Sink的配置
  • Agent=Source+Channel+Sink,其实agent就是Flume的配置文件
    一个配置文件是可以配置很多个Agent的。
  • Event:Flume数据传输的最小单位,一个Event就是一条记录,由head和body两个部分组成,head存储的是,body存储的是字节数组
4.2配置
# example.conf: A single-node Flume configuration

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

# Describe/configure the source
a1.sources.r1.type = netcat
a1.sources.r1.bind = localhost
a1.sources.r1.port = 44444

# Describe the sink
a1.sinks.k1.type = logger

# 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.3配置讲解

Netsource :黑色的配置是必填项
5
memory channelcapatity=>channel的存储最大event(消息)个数,生产至少10万条,transationCapacity=>最多达到多少条必须提交事务。生产也必须调大。
6
logger:就是控制台类型的sink
注意1:一个source可以绑定多个channel,但是一个sink只能绑定一个Channel

4.4启动Agent以及测试

启动:

#最后一行是为了方便观察输出INFO日志到控制台,可以去掉
flume-ng agent \
--name a1 \
--conf $FLUME_HOME/conf \
--conf-file $FLUME_HOME/conf/example.conf \
-Dflume.root.logger=INFO,console

使用telnet测试:

[hadoop@hadoop001 ~]$ telnet localhost 44444
Trying ::1...
telnet: connect to address ::1: Connection refused
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
hello
OK
nihaoa^H^H
OK

5.(初始版本)使用Exec Source采集文件数据到hdfs

生产的架构是: log数据=》flume=》hdfs,这里我们采用简单的Exec Source通过tail -F 数据文件进行数据采集。

# example.conf: A single-node Flume configuration

# Name the components on this agent
exec-hdfs-agent.sources = exec-source
exec-hdfs-agent.sinks = hdfs-sink
exec-hdfs-agent.channels = memory-channel

# Describe/configure the source
exec-hdfs-agent.sources.exec-source.type = exec
exec-hdfs-agent.sources.exec-source.command = tail -F /home/hadoop/data/flume/exec/input/test.log
exec-hdfs-agent.sources.exec-source.shell = /bin/sh -c

# Describe the sink
exec-hdfs-agent.sinks.hdfs-sink.type = hdfs
exec-hdfs-agent.sinks.hdfs-sink.hdfs.path = hdfs://hadoop001:9000/flume/exec
exec-hdfs-agent.sinks.hdfs-sink.hdfs.fileType = DataStream 
exec-hdfs-agent.sinks.hdfs-sink.hdfs.writeFormat = Text

# Use a channel which buffers events in memory
exec-hdfs-agent.channels.memory-channel.type = memory
exec-hdfs-agent.channels.memory-channel.capacity = 1000
exec-hdfs-agent.channels.memory-channel.transactionCapacity = 100

# Bind the source and sink to the channel
exec-hdfs-agent.sources.exec-source.channels = memory-channel
exec-hdfs-agent.sinks.hdfs-sink.channel = memory-channel

写hdfa文件时先生成创建一个后缀名称为.tmp的文件,当写完成时,去掉了.tmp
缺点:

  • 虽然此种tail方式可以将日志数据采集到hdfs,但是tail -F进程挂了咋办,不还是会丢数据!生产上是行不通的。,无法做到高可用。
  • 其次上面的采集流程并未解决生成大量小文件的问题,无法做到高可靠
  • tail只能监控一个文件,生产中更多的是监控一个文件夹。不满足需求

6.(演进版本)使用Spooling Directory Source采集文件夹数据到hdfs

  • 写到hdfs上的文件大小最好是100M左右,略低于blockSize的大小
  • 一般使用rollInterval(时间)、rollSize(大小)来控制文件的生成,那个先触发就会生成hdfs文件,将根据条数的roll关闭。
  • rollSize控制的大小是指的压缩前的,所以若hdfs文件使用了压缩,需调大rollsize的大小
  • 当文件夹下的某个文件被采集到hdfs上,会有个.complete标志
  • 使用Spooling Directory Source采集文件数据时若该文件数据已经被采集,再对该文件做修改是会报错的停止的,其次若放进去一个已经完成采集的同名数据文件也是会报错停止的
  • 写hdfs数据可按照时间分区,注意若该时间刻度内无数据则不会生成该时间文件夹
  • 生成的文件名称默认是前缀+时间戳,这个是可以更改的。
# example.conf: A single-node Flume configuration

# Name the components on this agent
spool-hdfs-agent.sources = spool-source
spool-hdfs-agent.sinks = hdfs-sink
spool-hdfs-agent.channels = memory-channel

# Describe/configure the source
spool-hdfs-agent.sources.spool-source.type = spooldir
spool-hdfs-agent.sources.spool-source.spoolDir = /home/hadoop/data/flume/spool/input

# Describe the sink
spool-hdfs-agent.sinks.hdfs-sink.type = hdfs
spool-hdfs-agent.sinks.hdfs-sink.hdfs.path = hdfs://hadoop001:9000/flume/spool/%Y%m%d%H%M
spool-hdfs-agent.sinks.hdfs-sink.hdfs.useLocalTimeStamp = true
spool-hdfs-agent.sinks.hdfs-sink.hdfs.fileType = CompressedStream  
spool-hdfs-agent.sinks.hdfs-sink.hdfs.writeFormat = Text
spool-hdfs-agent.sinks.hdfs-sink.hdfs.codeC = gzip
spool-hdfs-agent.sinks.hdfs-sink.hdfs.filePrefix = wsk
spool-hdfs-agent.sinks.hdfs-sink.hdfs.rollInterval = 30
spool-hdfs-agent.sinks.hdfs-sink.hdfs.rollSize = 100000000
spool-hdfs-agent.sinks.hdfs-sink.hdfs.rollCount = 0

# Use a channel which buffers events in memory
spool-hdfs-agent.channels.memory-channel.type = memory
spool-hdfs-agent.channels.memory-channel.capacity = 1000
spool-hdfs-agent.channels.memory-channel.transactionCapacity = 100

# Bind the source and sink to the channel
spool-hdfs-agent.sources.spool-source.channels = memory-channel
spool-hdfs-agent.sinks.hdfs-sink.channel = memory-channel

上述的Spooling Directory Source配置虽然解决了小文件过多以及监控多个文件的问题,但是依旧有如下问题。
缺点:

  • 虽然能监控一个文件夹,但是无法监控递归的文件夹中的数据
  • (严重)若采集时Flume挂了,无法保证重启时还继续从之前文件读取的哪一行继续采集数据
    基于以上两个缺点,此方式生产也是不可接受的

7.(生产版本)使用Taildir Source采集文件夹数据到hdfs

  • Taildir Source是Apache flume 1.7新推出的,但是CDH Flume 1.6做了集成
  • Taildir Source是高可靠(reliable)的source,它会实时的将文件偏移量写到json文件中并保存到磁盘。下次重启Flume时会读取Json文件获取文件O偏移量,然后从之前的位置读取数据,保证数据不丢失
  • Taildir Source 可同时监控多个文件夹以及文件。即使文件在实时写入数据。
  • Taildir Source也是无法采集递归文件下数据,这需要改造源码
  • Taildir Source监控一个文件夹下所有的文件,一定要使用.* 正则
# example.conf: A single-node Flume configuration

# Name the components on this agent
taildir-hdfs-agent.sources = taildir-source
taildir-hdfs-agent.sinks = hdfs-sink
taildir-hdfs-agent.channels = memory-channel

# Describe/configure the source
taildir-hdfs-agent.sources.taildir-source.type = TAILDIR
taildir-hdfs-agent.sources.taildir-source.filegroups = f1
taildir-hdfs-agent.sources.taildir-source.filegroups.f1 = /home/hadoop/data/flume/taildir/input/.*
taildir-hdfs-agent.sources.taildir-source.positionFile = /home/hadoop/data/flume/taildir/taildir_position/taildir_position.json

# Describe the sink
taildir-hdfs-agent.sinks.hdfs-sink.type = hdfs
taildir-hdfs-agent.sinks.hdfs-sink.hdfs.path = hdfs://hadoop001:9000/flume/taildir/%Y%m%d%H%M
taildir-hdfs-agent.sinks.hdfs-sink.hdfs.useLocalTimeStamp = true
taildir-hdfs-agent.sinks.hdfs-sink.hdfs.fileType = CompressedStream  
taildir-hdfs-agent.sinks.hdfs-sink.hdfs.writeFormat = Text
taildir-hdfs-agent.sinks.hdfs-sink.hdfs.codeC = gzip
taildir-hdfs-agent.sinks.hdfs-sink.hdfs.filePrefix = wsk
taildir-hdfs-agent.sinks.hdfs-sink.hdfs.rollInterval = 30
taildir-hdfs-agent.sinks.hdfs-sink.hdfs.rollSize = 100000000
taildir-hdfs-agent.sinks.hdfs-sink.hdfs.rollCount = 0

# Use a channel which buffers events in memory
taildir-hdfs-agent.channels.memory-channel.type = memory
taildir-hdfs-agent.channels.memory-channel.capacity = 1000
taildir-hdfs-agent.channels.memory-channel.transactionCapacity = 100

# Bind the source and sink to the channel
taildir-hdfs-agent.sources.taildir-source.channels = memory-channel
taildir-hdfs-agent.sinks.hdfs-sink.channel = memory-channel
  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值