flume 安装

一、什么是Apache Flume 

官网:Flume is a distributed, reliable, and available service for efficiently collecting, aggregating, and moving large amounts of log data . It has a simple and flexible architecture based on streaming data flows. It is robust and fault tolerant with tunable reliability mechanisms and many failover and recovery mechanisms. It uses a simple extensible data model that allows for online analytic application. 

1、flume是一个 分布式的 日志 收集系统 ,具有高可靠、高可用、事务管理、失败重启等功能。数据处理速度快,完全可以用于生产环境。 
常用的分布式日志收集系统: 
Apache Flume、 
Facebook Scribe、 
Apache Chukwa 
2、flume的核心是 agent 。agent是一个java进程,运行在日志收集端,通过agent接收日志,然后暂存起来,再发送到目的地。 
3、agent里面包含3个核心组件:source、channel、sink。

3.1、 source 组件是专用于收集日志的,可以处理各种类型各种格式的日志数据,包括avro、thrift、exec、jms、spooling directory、netcat、                                          sequence generator、syslog、http、legacy、自定义。source组件把数据收集来以后,临时存放在channel中。 
3.2、 channel 组件是在agent中专用于临时存储数据的,可以存放在memory、jdbc、file、自定义。 
    channel中的数据只有在sink发送成功之后才会被删除。 
3.3、 sink 组件是用于把数据发送到目的地的组件,目的地包括hdfs、logger、avro、thrift、ipc、file、null、hbase、solr、自定义。 
4、在整个数据传输过程中,流动的是event。事务保证是在event级别。 
5、flume可以支持 多级flume的agent ,支持扇入(fan-in)、扇出(fan-out)。

Flume简单处理示意图 

flume 安装_第1张图片

Flume复杂处理示意图

flume 安装_第2张图片

二、Flume安装配置 

2.1、下载Flume

Flume下载链接 

2.2、解压缩 

      cd /home/yujianxin/flume 
      tar -zxvf apache-flume-1.6.0-src.tar.gz ; tar -zxvf apache-flume-1.6.0-bin.tar.gz

      然后把src文件夹中的内容全部复制到bin文件夹   

2.3、配置Flume环境变量

export FLUME_HOME=xxx/flume-1.6.0-bin

export path=$path:$FLUME_HOME/bin      

三、 验证Flume安装是否成功

$ flume-ng version

    Flume 1.6.0

    Source code repository: https://git-wip-us.apache.org/repos/asf/flume.git

    Revision: 2561a23240a71ba20bf288c7c2cda88f443c2080

    Compiled by hshreedharan on Mon May 11 11:15:44 PDT 2015

    From source with checksum b29e416802ce9ece3269d34233baf43f

 OK!出现如上截图,说明Flume成功安装。Flume的使用请关注后续博文。


你可能感兴趣的:(安装,Flume)