Flume之监控文件内容变化

vim  /usr/local/flume/conf/exec-file.conf

# Name the components on this agent

#定义了当前agent的名字叫做a1
a1.sources = r1        
a1.sinks = k1        
a1.channels = c1    

# Describe/configure the source
a1.sources.r1.type = exec        
a1.sources.r1.command = tail -F /opt/data/logs/http-flume.log

# 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



//运行脚本

flume-ng agent -c conf -f exec-file.conf --name a1 -Dflume.root.logger=INFO,console

你可能感兴趣的:(Hadoop生态系统)