日志采集Flume配置

 1)Flume配置分析

  CDH| 组件的使用-Flume| Kafka| Oozie基于Hue的任务调度

Flume直接读log日志的数据,log日志的格式是app-yyyy-mm-dd.log。

 2)Flume的具体配置如下:

    在CM管理页面上点击Flume,

在实例页面选择hadoop101上的Agent

CDH| 组件的使用-Flume| Kafka| Oozie基于Hue的任务调度

  3)在CM管理页面hadoop101上Flume的配置中找到代理名称改为a1

 CDH| 组件的使用-Flume| Kafka| Oozie基于Hue的任务调度

  4)在配置文件如下内容(flume-kafka)

a1.sources=r1
a1.channels=c1 c2 
a1.sinks=k1 k2 

# configure source
a1.sources.r1.type = TAILDIR
a1.sources.r1.positionFile = /opt/module/flume/log_position.json
a1.sources.r1.filegroups = f1
a1.sources.r1.filegroups.f1 = /tmp/logs/app.+
a1.sources.r1.fileHeader = true
a1.sources.r1.channels = c1 c2

#interceptor
a1.sources.r1.interceptors = i1 i2
a1.sources.r1.interceptors.i1.type = com.atguigu.flume.interceptor.LogETLInterceptor$Builder
a1.sources.r1.interceptors.i2.type = com.atguigu.flume.interceptor.LogTypeInterceptor$Builder

# selector
a1.sources.r1.selector.type = multiplexing
a1.sources.r1.selector.header = topic
a1.sources.r1.selector.mapping.topic_start = c1
a1.sources.r1.selector.mapping.topic_event = c2

# configure channel
a1.channels.c1.type = memory
a1.channels.c1.capacity=10000
a1.channels.c1.byteCapacityBufferPercentage=20

a1.channels.c2.type = memory
a1.channels.c2.capacity=10000
a1.channels.c2.byteCapacityBufferPercentage=20

# configure sink
# start-sink
a1.sinks.k1.type = org.apache.flume.sink.kafka.KafkaSink
a1.sinks.k1.kafka.topic = topic_start
a1.sinks.k1.kafka.bootstrap.servers = hadoop101:9092,hadoop102:9092,hadoop103:9092
a1.sinks.k1.kafka.flumeBatchSize = 2000
a1.sinks.k1.kafka.producer.acks = 1
a1.sinks.k1.channel = c1

# event-sink
a1.sinks.k2.type = org.apache.flume.sink.kafka.KafkaSink
a1.sinks.k2.kafka.topic = topic_event
a1.sinks.k2.kafka.bootstrap.servers = hadoop101:9092,hadoop102:9092,hadoop103:9092
a1.sinks.k2.kafka.flumeBatchSize = 2000
a1.sinks.k2.kafka.producer.acks = 1
a1.sinks.k2.channel = c2
View Code

相关文章:

  • 2022-12-23
  • 2021-11-06
  • 2022-02-06
  • 2021-12-03
  • 2019-03-15
  • 2021-07-11
  • 2022-01-02
  • 2022-12-23
猜你喜欢
  • 2021-09-16
  • 2021-09-24
  • 2021-08-26
  • 2021-10-14
  • 2021-08-22
  • 2022-12-23
  • 2022-02-07
相关资源
相似解决方案