博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hadoop之 flume1.6安装
阅读量:6268 次
发布时间:2019-06-22

本文共 1489 字,大约阅读时间需要 4 分钟。

flume 1.6安装

1.解压

2.复制

  cp conf/flume-conf.properties.template conf/flume.conf

  cp conf/flume-env.sh.template conf/flume-env.sh

3. 修改 JAVA_HOME

  flume-env.sh

4.检验安装

  flume-ng version

5.启动flume agent agent1

  flume-ng agent --conf conf -f /bigdata/flume-1.6/conf/agent1.conf -n agent1 -Dlume.root.logger=DEBUG,console

6.创建指定文件

  echo "hello world" > /home/hadoop/flume-1.5.0-bin/log.00

7.使用avro-client发送文件

  flume-ng avro-client -c . -H localhost -p 41414 -F /bigdata/flume-1.6/log.00

8.在 agent1控制台会查看到相关信息

更多详细配置
 

二. 收集 udp

  udp.conf

  

# Name the components on this agenta1.sources = r1a1.sinks = k1a1.channels = c1a1.sources.r1.type = syslogudpa1.sources.r1.port = 8283a1.sources.r1.host = cdh101a1.sources.r1.channels = c1 #HDFS PATH#a1.sinks.k1.hdfs.path = hdfs://nameservice:8020/user/root/udp/%Y%m%d/hour=%H#HDFS thread numbersa1.sinks.k1.hdfs.threadsPoolSize=100 # HDFS the sink#a1.sinks.k1.type = hdfsa1.sinks.k1.type = loggera1.sinks.k1.hdfs.useLocalTimeStamp = truea1.sinks.k1.hdfs.filePrefix = udpa1.sinks.k1.hdfs.rollInterval = 0a1.sinks.k1.hdfs.rollSize = 118435456a1.sinks.k1.hdfs.rollCount = 0a1.sinks.k1.hdfs.idleTimeout = 1000a1.sinks.k1.hdfs.fileType = DataStream a1.sinks.k1.hdfs.rollTimerPoolSize = 1#memory sizea1.channels.c1.type = memorya1.channels.c1.transactionCapacity = 100000a1.channels.c1.capacity = 268435456# Bind the source and sink to the channela1.sources.r1.channels = c1a1.sinks.k1.channel = c1

 

转载于:https://www.cnblogs.com/chaoren399/p/5468369.html

你可能感兴趣的文章
SQL事务用法begin tran,commit tran和rollback tran的用法
查看>>
centos7 crontab笔记
查看>>
.Net AppDomain.CurrentDomain.AppendPrivatePath(@"Libs");
查看>>
【Unity3D基础教程】给初学者看的Unity教程(零):如何学习Unity3D
查看>>
Android Mina框架的学习笔记
查看>>
合并两个排序的链表
查看>>
rtf格式的一些说明,转载的
查看>>
REST Security with JWT using Java and Spring Security
查看>>
echarts学习总结(二):一个页面存在多个echarts图形,图形自适应窗口大小
查看>>
IIS7显示ASP的详细错误信息到浏览器
查看>>
使用fiddler对手机APP进行抓包
查看>>
exit和_exit的区别
查看>>
Javascript、Jquery获取浏览器和屏幕各种高度宽度(单位都为px)
查看>>
php不重新编译,安装未安装过的扩展,如curl扩展
查看>>
JavaScript编码encode和decode escape和unescape
查看>>
ppp点对点协议
查看>>
html5游戏开发-简单tiger机
查看>>
Codeforces 712C Memory and De-Evolution
查看>>
编写的windows程序,崩溃时产生crash dump文件的办法
查看>>
Ural2110 : Remove or Maximize
查看>>