5.4 测试
5.4.1 打包
将写好的代码打包,并放到 flume 的 lib 目录下。
5.4.2 编写配置文件
# Name the components on this agent
a1.sources = r1
a1.sinks = k1
a1.channels = c1
# Describe/configure the source
a1.sources.r1.type = com.atguigu.day01.MySource
a1.sources.r1.delayTime = 1000
a1.sources.r1.preText = shenzhen
# 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.4.3 开启任务
flume-ng agent -c conf -f job/mysource-test.conf -n a1 -Dflume.root.logger=INFO,console