实时采集(实时流)
Memory Channel(内存Channels)
- 当前缓冲区最多能够缓冲多少条数据(Event):a1.channels.c1.capacity
- 数据源一次最多能写多少数据到缓冲区:a1.channels.c1.transactionCapacity
代码
# example.conf: A single-node Flume configuration# Name the components on this agenta1.sources = r1a1.sinks = k1a1.channels = c1# Describe/configure the sourcea1.sources.r1.type = execa1.sources.r1.command = tail -F /home/hadoop/pikaqiu.txt# Describe the sinka1.sinks.k1.type = logger# Use a channel which buffers events in memorya1.channels.c1.type = memorya1.channels.c1.capacity = 1000a1.channels.c1.transactionCapacity = 100# Bind the source and sink to the channela1.sources.r1.channels = c1a1.sinks.k1.channel = c1
启动脚本
flume-ng agent --conf conf --conf-file /home/hadoop/kylin/f.conf --name a1-Dflume.root.logger=INFO,console
