flume采集最简demo
生活随笔
收集整理的這篇文章主要介紹了
flume采集最简demo
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
1、安裝jdk1.8以上
2、解壓flume
tar -zxvf ?apache-flume-1.9.0-bin.tar.gz? cd ?apache-flume-1.9.0-bin/conf cp ?flume-env.sh.template ?flume-env.sh vim conf/flume-env.sh JAVA_HOME=/soft/jdk1.8.0_1013、驗證是否成功
/bin/flume-ng version Flume 1.9.0 Source code repository: https://git-wip-us.apache.org/repos/asf/flume.git
4、案例
創建demo.conf
寫入
# 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
5、啟動
6、寫點測試數據
telnet localhost 44444如果telnet命令不存在
yum install -y telnet?
7、更多案例
http://www.aboutyun.com/thread-8917-1-1.html
總結
以上是生活随笔為你收集整理的flume采集最简demo的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 代码没问题,请求无响应,超时
- 下一篇: @Transient不起作用的问题