中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Flume NG 學習筆記(三)流配置

發布時間:2020-06-16 14:10:15 來源:網絡 閱讀:941 作者:jackwxh 欄目:開發技術

目錄(?)[+]

Flume NG 學習筆記(三)流配置


在通過flume采集日志數據的時候,一般都是通過flume 代理從日志源或者日志客戶端采集數據到flume代理中,然后再由flume代理送到目標存儲.上圖中就是每個一級flume代理負責從webserv采集數據,然后再由一個二級flume代理進行日志匯總。

Flume NG 學習筆記(三)流配置


Flume支持從一個源發送事件到多個通道中,這被稱為事件流的復用。這里需要在配置中定義事件流的復制/復用,選擇1個或者多個通道進行數據流向。

下面的內容主要介紹flume 流配置,這節比較水,因為都比較簡單。

一、單一代理流配置

下面的配置例子是外部數據源通過avro客戶端發送數據到HDFS上。下面無節操的直接拷官網


[html] view plain copy

  1. agent_foo.sourcesavro-AppSrv-source  

  2. agent_foo.sinkshdfs-Cluster1-sink  

  3. agent_foo.channelsmem-channel-1  

  4.    

  5. # set channel for sources, sinks  

  6.    

  7. # properties of avro-AppSrv-source  

  8. agent_foo.sources.avro-AppSrv-source.typeavro  

  9. agent_foo.sources.avro-AppSrv-source.bindlocalhost  

  10. agent_foo.sources.avro-AppSrv-source.port10000  

  11.    

  12. # properties of mem-channel-1  

  13. agent_foo.channels.mem-channel-1.typememory  

  14. agent_foo.channels.mem-channel-1.capacity1000  

  15. agent_foo.channels.mem-channel-1.transactionCapacity100  

  16.    

  17. # properties of hdfs-Cluster1-sink  

  18. agent_foo.sinks.hdfs-Cluster1-sink.typehdfs  

  19. agent_foo.sinks.hdfs-Cluster1-sink.hdfs.pathhdfs://namenode/flume/webdata  



二、單代理多流配置

單代理多流配置是上面的加強版,相當于一個代理兩個流,一個是從外部avro客戶端到HDFS,另一個是Linux命令(tail)的輸出到Avro接受代理,2個做成配置。繼續無節操的直接拷官網


[html] view plain copy

  1. # list the sources, sinks and channelsin the agent  

  2. agent_foo.sourcesavro-AppSrv-source1 exec-tail-source2  

  3. agent_foo.sinkshdfs-Cluster1-sink1 avro-forward-sink2  

  4. agent_foo.channelsmem-channel-1 file-channel-2  

  5.    

  6. # flow #1 configuration  

  7. agent_foo.sources.avro-AppSrv-source1.channelsmem-channel-1  

  8. agent_foo.sinks.hdfs-Cluster1-sink1.channelmem-channel-1  

  9.    

  10. # flow #2 configuration  

  11. agent_foo.sources.exec-tail-source2.channelsfile-channel-2  

  12. agent_foo.sinks.avro-forward-sink2.channelfile-channel-2  




三、配置多代理流程

這個配置就是學習(二)的第二個例子,簡單的講就是數據源發送的事件由第一個Flume代理發送到下一個Flume代理中。下面是官網:


[html] view plain copy

  1. # list sources, sinks and channels inthe agent  

  2. agent_foo.sourcesavro-AppSrv-source  

  3. agent_foo.sinksavro-forward-sink  

  4. agent_foo.channelsfile-channel  

  5.    

  6. # define the flow  

  7. agent_foo.sources.avro-AppSrv-source.channelsfile-channel  

  8. agent_foo.sinks.avro-forward-sink.channelfile-channel  

  9.    

  10. # avro sink properties  

  11. agent_foo.sources.avro-forward-sink.typeavro  

  12. agent_foo.sources.avro-forward-sink.hostname10.1.1.100  

  13. agent_foo.sources.avro-forward-sink.port10000  

  14.    

  15. # configure other pieces  

  16. #...  



例子都不難理解

四、多路復用流

Flume支持從一個源到多個通道和sinks,叫做fan out。有兩種模式的fan out,復制和復用。復制就是流的事件被發送到所有的配置通道去。


[html] view plain copy

  1. # List the sources, sinks and channelsfor the agent  

  2. <Agent>.sources<Source1>  

  3. <Agent>.sinks<Sink1> <Sink2>  

  4. <Agent>.channels<Channel1> <Channel2>  

  5.    

  6. # set list of channels for source(separated by space)  

  7. <Agent>.sources.<Source1>.channels<Channel1> <Channel2>  

  8.    

  9. # set channel for sinks  

  10. <Agent>.sinks.<Sink1>.channel<Channel1>  

  11. <Agent>.sinks.<Sink2>.channel<Channel2>  

  12.    

  13. <Agent>.sources.<Source1>.selector.typereplicating  

其中,<Agent>.sources.<Source1>.selector.type= replicating 這個源的選擇類型為復制。這個參數不指定一個選擇的時候,默認情況下它復制


復用則是麻煩一下,流的事情是被篩選的發生到不同的渠道,需要指定源和扇出通道的規則,感覺與case when 類似。

復用的參數為:<Agent>.sources.<Source1>.selector.type = multiplexing


[html] view plain copy

  1. # Mapping for multiplexing selector  

  2. <Agent>.sources.<Source1>.selector.typemultiplexing  

  3. <Agent>.sources.<Source1>.selector.header<someHeader>  

  4. <Agent>.sources.<Source1>.selector.mapping.<Value1><Channel1>  

  5. <Agent>.sources.<Source1>.selector.mapping.<Value2><Channel1> <Channel2>  

  6. <Agent>.sources.<Source1>.selector.mapping.<Value3><Channel2>  

  7. #...  

  8.    

  9. <Agent>.sources.<Source1>.selector.default<Channel2>  



官網中給出例子,可以看出流的事件要聲明一個頭部,然后我們檢查頭部對應的值,這里我們可以認為是事件屬性,如果指定的值與設定的通道相匹配,那么就將該事件發送到被匹配到的通道中去。這個參數就是默認通道<Agent>.sources.<Source1>.selector.default =<Channel2>

下面是官網中復用的詳細配置例子


[html] view plain copy

  1. # list the sources, sinks and channelsin the agent  

  2. agent_foo.sourcesavro-AppSrv-source1  

  3. agent_foo.sinkshdfs-Cluster1-sink1 avro-forward-sink2  

  4. agent_foo.channelsmem-channel-1 file-channel-2  

  5.    

  6. # set channels for source  

  7. agent_foo.sources.avro-AppSrv-source1.channelsmem-channel-1 file-channel-2  

  8.    

  9. # set channel for sinks  

  10. agent_foo.sinks.hdfs-Cluster1-sink1.channelmem-channel-1  

  11. agent_foo.sinks.avro-forward-sink2.channelfile-channel-2  

  12.    

  13. # channel selector configuration  

  14. agent_foo.sources.avro-AppSrv-source1.selector.typemultiplexing  

  15. agent_foo.sources.avro-AppSrv-source1.selector.headerState  

  16. agent_foo.sources.avro-AppSrv-source1.selector.mapping.CAmem-channel-1  

  17. agent_foo.sources.avro-AppSrv-source1.selector.mapping.AZfile-channel-2  

  18. agent_foo.sources.avro-AppSrv-source1.selector.mapping.NYmem-channel-1 file-channel-2  

  19. agent_foo.sources.avro-AppSrv-source1.selector.defaultmem-channel-1  



上面例子中,設置事件的頭屬性Header 為“State”作為的選擇檢查。剩下的就是與case when 基本一樣。其中,例子中的配置

agent_foo.sources.avro-AppSrv-source1.selector.mapping.NY= mem-channel-1 file-channel-2 從這里可以看出映射允許每個值通道可以重疊。默認值可以包含任意數量的通道。


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

都匀市| 峨边| 平顺县| 奉节县| 雅安市| 保康县| 尤溪县| 志丹县| 长丰县| 资中县| 乡宁县| 垫江县| 永善县| 海阳市| 思茅市| 疏附县| 思南县| 花莲市| 航空| 汨罗市| 林口县| 宿松县| 阿拉善右旗| 体育| 上虞市| 江津市| 林口县| 合山市| 祁连县| 华容县| 南平市| 田林县| 惠州市| 莱芜市| 舞阳县| 景谷| 福鼎市| 屏边| 固始县| 南皮县| 昭平县|