1. 程式人生 > >【Flume】之 執行(案例一)

【Flume】之 執行(案例一)

步驟

(1)配置檔案

  1. /conf 下建立 exmaple.conf
  2. 拷貝,配置exmaple.conf
# example.conf: A single-node Flume configuration

# 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 = localhost
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
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

(2)啟動Flume

./flume-ng agent -n a1 -c $FLUME_HOME/conf -f /data/soft/flume/apache-flume-1.8.0-bin/conf/exmaple.conf -Dflume.root.logger=INFO,console

這裡 $FLUME_HOME 就是 /data/soft/flume/apache-flume-1.8.0-bin

在這裡插入圖片描述

(3)使用telnet 進行測試

另起個終端,輸入: telnet localhost 44444 在這裡插入圖片描述