Flume-自定义Source(conf 配置)

a1.sources=r1
a1.channels=c1
a1.sinks=k1
#指定自定义Source的位置
a1.sources.r1.type=com.bw.flume.MyExecSource
#偏移量存储的文件地址
a1.sources.r1.posiFile=/flume/ckpt.txt
#监听的文件
a1.sources.r1.filename=/aa.txt
#应对监听文件出现中文字符
a1.sources.r1.charset=utf-8
#监控的间隔时间
a1.sources.r1.interval=3000
#channle存储的方式,基于内存的
a1.channels.c1.type=memory
#设置Channel的最大存储event数量为1000
a1.channels.c1.capacity=1000
#每次最大可以source中拿到或者送到sink中的event数量是100
a1.channels.c1.transactionCapacity=100
#输出方式不产生实体文件,只在控制台显示
a1.sinks.k1.type=logger
#相互连接
a1.sources.r1.channels=c1
a1.sinks.k1.channel=c1

你可能感兴趣的:(大数据)