Flume安装与第一个Agent应用

安装

(1)编辑flume-env.sh配置文件,配置javahome

export JAVA_HOME=/home/bxp/Documents/install/jdk1.8.0_131

(2)将flume与hdfs集成的jar包导入的到flume的lib目录下(自行度娘下载)。

命令

bin/flume-ng agent
global options(全局选项):
--conf 
-Dproperty=value
agent options(agent选项):
--name 
--conf-file
//示例:bin/flume-ng agent --conf conf/  --name agent-test --conf-file test.conf

第一个Agent应用

(1)安装并启动telnet,用于测试flume

sudo yum install telnet
sudo yum install telnet-server
sudo yum install xinetd
systemctl start xinetd

(2)创建a1.conf文件配置resoures,hannel,sink’

#define agent
a1.sources = r1
a1.channels = c1
a1.sinks = k1

# defined source 
a1.sources.r1.type = netcat
a1.sources.r1.bind = localhost
a1.sources.r1.port = 55555

# defined channel
a1.channels.c1.type = memory
#设置channel的容量
a1.channels.c1.capacity = 1000
#设置sink每次从channel中拉取的event的数量
a1.channels.c1.transactionCapacity = 100

# defined sinks
a1.sinks.k1.type = logger
a1.sinks.k1.maxBytesToLog = 2014

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

(3)启动flume

bin/flume-ng agent --conf conf/  --name a1 --conf-file conf/a1.conf -Dflume.root.logger=DEBUG,console

(4)启动telnet发送数据进行测试

telnet localhost 55555
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值