測試Flume-1.6.0寫入HDFS(Hadoop-2.7.2)的簡單實例

一、推薦參考博客地址:http://blog.csdn.net/xiao_jun_0820/article/category/2399621node

放在flume根目錄conf文件夾下的代理配置文件寫法:oop

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

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

a1.sinks.k1.type = hdfs
a1.sinks.k1.hdfs.path=hdfs://localhost:9000/user/hadoop/flume
a1.sinks.k1.hdfs.fileType=DataStream  
a1.sinks.k1.hdfs.writeFormat=Text  
a1.sinks.k1.hdfs.rollInterval=0  
a1.sinks.k1.hdfs.rollSize=10240  
a1.sinks.k1.hdfs.rollCount=0  
a1.sinks.k1.hdfs.idleTimeout=60  

# 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

先進到hadoop的根目錄下啓動HDFS (命令./sbin/start-dfs.sh)測試

而後開啓終端啓動上面的代理文件,開啓另外一個終端測試端口鏈接。spa

能夠參考本博此文:http://my.oschina.net/u/2478308/blog/731838.net

寫入成功後會在終端中顯示例如FlumeData.1470365774656.tmp的文件,該文件會根據設置的時間去除.tmp後綴。代理

事項:code

 一、HDFS的寫入路徑爲 hdfs://namenodepath:namenodeport/自定義用戶目錄/自定義數據存儲目錄。對應目錄須要提早建立,代理啓動寫入時不會本身建立目錄。orm

 二、須要切換到有hdfs寫入權限的用戶。blog

 三、dfs.fileType=DataStream  hdfs.writeFormat=Text 使生成的文件能夠讀取。hadoop

 四、flume寫入hdfs後能夠經過例如./bin/hdfs dfs -cat flume/FlumeData.1470365774656,查看hdfs中的文件內容。

 五、能夠鏈接http://localhost:50070中Utilities查看相關目錄下的寫入HDFS的文件。

相關文章
相關標籤/搜索