flume 学习四:windows下运行flume

案例一:通过定制sink端向文件中输入信息。

1.      将bin软 件包解压 :

2.      将example2.conf文件放到conf文件夹下:

#a1.sources = r1

a1.sinks = k1

a1.channels = c1

# Describe/configure the source

#a1.sources.r1.type = com.dinfo.flume.MySink

 

# Describe the sink

a1.sinks.k1.type = com.dinfo.flume.MySink

# Use a channel which buffers events inmemory

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

3.      将自定义jar放到lib下:

4.      执行命令:不停的打印信息

5.      运行结果:

 

posted on 2017-03-30 11:13  11133432211  阅读(301)  评论(0)    收藏  举报