1. 程式人生 > >Flume配置檔案

Flume配置檔案

使用flume的關鍵就是寫配置檔案

A)配置source B)配置channel C)配置sink D)把三個元件串起來 a1:agent名稱 r1:source名稱 k1:sink名稱 c1:channel名稱

Name the components on this agent

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

Describe/configure the source

a1.sources.r1.type = netcat a1.sources.r1.bind = zoujc01 a1.sources.r1.port = 44444

Describe the sink

a1.sinks.k1.type = logger

Use a channel which buffers events in memory

a1.channels.c1.type = memory

Bind the source and sink to the channel

a1.sources.r1.channels = c1 a1.sinks.k1.channel = c1