本篇內(nèi)容介紹了“Flume整體流程是怎樣的”的有關(guān)知識,在實(shí)際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
專注于為中小企業(yè)提供成都做網(wǎng)站、成都網(wǎng)站設(shè)計(jì)服務(wù),電腦端+手機(jī)端+微信端的三站合一,更高效的管理,為中小企業(yè)鄞州免費(fèi)做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動了上1000家企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網(wǎng)站建設(shè)實(shí)現(xiàn)規(guī)模擴(kuò)充和轉(zhuǎn)變。
不管是Source還是Sink都依賴Channel,那么啟動時應(yīng)該先啟動Channel然后再啟動Source或Sink即可。
Flume有兩種啟動方式:使用EmbeddedAgent內(nèi)嵌在Java應(yīng)用中或使用Application單獨(dú)啟動一個進(jìn)程,此處我們已Application分析為主。
首先進(jìn)入org.apache.flume.node.Application的main方法啟動:
//1、設(shè)置默認(rèn)值啟動參數(shù)、參數(shù)是否必須的 Options options = new Options(); Option option = new Option("n", "name", true, "the name of this agent"); option.setRequired(true); options.addOption(option); option = new Option("f", "conf-file", true, "specify a config file (required if -z missing)"); option.setRequired(false); options.addOption(option); //2、接著解析命令行參數(shù) CommandLineParser parser = new GnuParser(); CommandLine commandLine = parser.parse(options, args); String agentName = commandLine.getOptionValue('n'); boolean reload = !commandLine.hasOption("no-reload-conf"); if (commandLine.hasOption('z') || commandLine.hasOption("zkConnString")) { isZkConfigured = true; } if (isZkConfigured) { //3、如果是通過ZooKeeper配置,則使用ZooKeeper參數(shù)啟動,此處忽略,我們以配置文件講解 } else { //4、打開配置文件,如果不存在則快速失敗 File configurationFile = new File(commandLine.getOptionValue('f')); if (!configurationFile.exists()) { throw new ParseException( "The specified configuration file does not exist: " + path); } List<LifecycleAware> components = Lists.newArrayList(); if (reload) { //5、如果需要定期reload配置文件,則走如下方式 //5.1、此處使用Guava提供的事件總線 EventBus eventBus = new EventBus(agentName + "-event-bus"); //5.2、讀取配置文件,使用定期輪訓(xùn)拉起策略,默認(rèn)30s拉取一次 PollingPropertiesFileConfigurationProvider configurationProvider = new PollingPropertiesFileConfigurationProvider( agentName, configurationFile, eventBus, 30); components.add(configurationProvider); application = new Application(components); //5.3、向Application注冊組件 //5.4、向事件總線注冊本應(yīng)用,EventBus會自動注冊Application中使用@Subscribe聲明的方法 eventBus.register(application); } else { //5、配置文件不支持定期reload PropertiesFileConfigurationProvider configurationProvider = new PropertiesFileConfigurationProvider( agentName, configurationFile); application = new Application(); //6.2、直接使用配置文件初始化Flume組件 application.handleConfigurationEvent(configurationProvider .getConfiguration()); } } //7、啟動Flume應(yīng)用 application.start(); //8、注冊虛擬機(jī)關(guān)閉鉤子,當(dāng)虛擬機(jī)關(guān)閉時調(diào)用Application的stop方法進(jìn)行終止 final Application appReference = application; Runtime.getRuntime().addShutdownHook(new Thread("agent-shutdown-hook") { @Override public void run() { appReference.stop(); } });
以上流程只提取了核心代碼中的一部分,比如ZK的實(shí)現(xiàn)直接忽略了,而Flume啟動大體流程如下:
1、讀取命令行參數(shù);
2、讀取配置文件;
3、根據(jù)是否需要reload使用不同的策略初始化Flume;如果需要reload,則使用Guava的事件總線實(shí)現(xiàn),Application的handleConfigurationEvent是事件訂閱者,PollingPropertiesFileConfigurationProvider是事件發(fā)布者,其會定期輪訓(xùn)檢查文件是否變更,如果變更則重新讀取配置文件,發(fā)布配置文件事件變更,而handleConfigurationEvent會收到該配置變更重新進(jìn)行初始化;
4、啟動Application,并注冊虛擬機(jī)關(guān)閉鉤子。
handleConfigurationEvent方法比較簡單,首先調(diào)用了stopAllComponents停止所有組件,接著調(diào)用startAllComponents使用配置文件初始化所有組件:
@Subscribe public synchronized void handleConfigurationEvent(MaterializedConfiguration conf) { stopAllComponents(); startAllComponents(conf); }
MaterializedConfiguration存儲Flume運(yùn)行時需要的組件:Source、Channel、Sink、SourceRunner、SinkRunner等,其是通過ConfigurationProvider進(jìn)行初始化獲取,比如PollingPropertiesFileConfigurationProvider會讀取配置文件然后進(jìn)行組件的初始化。
對于startAllComponents實(shí)現(xiàn)大體如下:
//1、首先啟動Channel supervisor.supervise(Channels, new SupervisorPolicy.AlwaysRestartPolicy(), LifecycleState.START); //2、確保所有Channel是否都已啟動 for(Channel ch: materializedConfiguration.getChannels().values()){ while(ch.getLifecycleState() != LifecycleState.START && !supervisor.isComponentInErrorState(ch)){ try { Thread.sleep(500); } catch (InterruptedException e) { Throwables.propagate(e); } } } //3、啟動SinkRunner supervisor.supervise(SinkRunners, new SupervisorPolicy.AlwaysRestartPolicy(), LifecycleState.START); //4、啟動SourceRunner supervisor.supervise(SourceRunner, new SupervisorPolicy.AlwaysRestartPolicy(), LifecycleState.START); //5、初始化監(jiān)控服務(wù) this.loadMonitoring();
從如下代碼中可以看到,首先要準(zhǔn)備好Channel,因?yàn)镾ource和Sink會操作它,對于Channel如果初始化失敗則整個流程是失敗的;然后啟動SinkRunner,先準(zhǔn)備好消費(fèi)者;接著啟動SourceRunner開始進(jìn)行采集日志。此處我們發(fā)現(xiàn)有兩個單獨(dú)的組件LifecycleSupervisor和MonitorService,一個是組件守護(hù)哨兵,一個是監(jiān)控服務(wù)。守護(hù)哨兵對這些組件進(jìn)行守護(hù),假設(shè)出問題了默認(rèn)策略是自動重啟這些組件。
對于stopAllComponents實(shí)現(xiàn)大體如下:
//1、首先停止SourceRunner supervisor.unsupervise(SourceRunners); //2、接著停止SinkRunner supervisor.unsupervise(SinkRunners); //3、然后停止Channel supervisor.unsupervise(Channels); //4、最后停止MonitorService monitorServer.stop();
此處可以看出,停止的順序是Source、Sink、Channel,即先停止生產(chǎn),再停止消費(fèi),最后停止管道。
Application中的start方法代碼實(shí)現(xiàn)如下:
public synchronized void start() { for(LifecycleAware component : components) { supervisor.supervise(component, new SupervisorPolicy.AlwaysRestartPolicy(), LifecycleState.START); } }
其循環(huán)Application注冊的組件,然后守護(hù)哨兵對它進(jìn)行守護(hù),默認(rèn)策略是出現(xiàn)問題會自動重啟組件,假設(shè)我們支持reload配置文件,則之前啟動Application時注冊過PollingPropertiesFileConfigurationProvider組件,即該組件會被守護(hù)哨兵守護(hù)著,出現(xiàn)問題默認(rèn)策略自動重啟。
而Application關(guān)閉執(zhí)行了如下動作:
public synchronized void stop() { supervisor.stop(); if(monitorServer != null) { monitorServer.stop(); } }
即關(guān)閉守護(hù)哨兵和監(jiān)控服務(wù)。
到此基本的Application分析結(jié)束了,我們還有很多疑問,守護(hù)哨兵怎么實(shí)現(xiàn)的。
整體流程可以總結(jié)為:
1、首先初始化命令行配置;
2、接著讀取配置文件;
3、根據(jù)是否需要reload初始化配置文件中的組件;如果需要reload會使用Guava事件總線進(jìn)行發(fā)布訂閱變化;
4、接著創(chuàng)建Application,創(chuàng)建守護(hù)哨兵,并先停止所有組件,接著啟動所有組件;啟動順序:Channel、SinkRunner、SourceRunner,并把這些組件注冊給守護(hù)哨兵、初始化監(jiān)控服務(wù);停止順序:SourceRunner、SinkRunner、Channel;
5、如果配置文件需要定期reload,則需要注冊Polling***ConfigurationProvider到守護(hù)哨兵;
6、最后注冊虛擬機(jī)關(guān)閉鉤子,停止守護(hù)哨兵和監(jiān)控服務(wù)。
輪訓(xùn)實(shí)現(xiàn)的SourceRunner 和SinkRunner會創(chuàng)建一個線程進(jìn)行工作,之前已經(jīng)介紹了其工作方式。接下來我們看下守護(hù)哨兵的實(shí)現(xiàn)。
首先創(chuàng)建LifecycleSupervisor:
//1、用于存放被守護(hù)的組件 supervisedProcesses = new HashMap<LifecycleAware, Supervisoree>(); //2、用于存放正在被監(jiān)控的組件 monitorFutures = new HashMap<LifecycleAware, ScheduledFuture<?>>(); //3、創(chuàng)建監(jiān)控服務(wù)線程池 monitorService = new ScheduledThreadPoolExecutor(10, new ThreadFactoryBuilder().setNameFormat( "lifecycleSupervisor-" + Thread.currentThread().getId() + "-%d") .build()); monitorService.setMaximumPoolSize(20); monitorService.setKeepAliveTime(30, TimeUnit.SECONDS); //4、定期清理被取消的組件 purger = new Purger(); //4.1、默認(rèn)不進(jìn)行清理 needToPurge = false;
LifecycleSupervisor啟動時會進(jìn)行如下操作:
public synchronized void start() { monitorService.scheduleWithFixedDelay(purger, 2, 2, TimeUnit.HOURS); lifecycleState = LifecycleState.START; }
首先每隔兩個小時執(zhí)行清理組件,然后改變狀態(tài)為啟動。而LifecycleSupervisor停止時直接停止了監(jiān)控服務(wù),然后更新守護(hù)組件狀態(tài)為STOP:
//1、首先停止守護(hù)監(jiān)控服務(wù) if (monitorService != null) { monitorService.shutdown(); try { monitorService.awaitTermination(10, TimeUnit.SECONDS); } catch (InterruptedException e) { logger.error("Interrupted while waiting for monitor service to stop"); } } //2、更新所有守護(hù)組件狀態(tài)為STOP,并調(diào)用組件的stop方法進(jìn)行停止 for (final Entry<LifecycleAware, Supervisoree> entry : supervisedProcesses.entrySet()) { if (entry.getKey().getLifecycleState().equals(LifecycleState.START)) { entry.getValue().status.desiredState = LifecycleState.STOP; entry.getKey().stop(); } } //3、更新本組件狀態(tài) if (lifecycleState.equals(LifecycleState.START)) { lifecycleState = LifecycleState.STOP; } //4、最后的清理 supervisedProcesses.clear(); monitorFutures.clear();
接下來就是調(diào)用supervise進(jìn)行組件守護(hù)了:
if(this.monitorService.isShutdown() || this.monitorService.isTerminated() || this.monitorService.isTerminating()){ //1、如果哨兵已停止則拋出異常,不再接收任何組件進(jìn)行守護(hù) } //2、初始化守護(hù)組件 Supervisoree process = new Supervisoree(); process.status = new Status(); //2.1、默認(rèn)策略是失敗重啟 process.policy = policy; //2.2、初始化組件默認(rèn)狀態(tài),大多數(shù)組件默認(rèn)為START process.status.desiredState = desiredState; process.status.error = false; //3、組件監(jiān)控器,用于定時獲取組件的最新狀態(tài),或者重新啟動組件 MonitorRunnable monitorRunnable = new MonitorRunnable(); monitorRunnable.lifecycleAware = lifecycleAware; monitorRunnable.supervisoree = process; monitorRunnable.monitorService = monitorService; supervisedProcesses.put(lifecycleAware, process); //4、定期的去執(zhí)行組件監(jiān)控器,獲取組件最新狀態(tài),或者重新啟動組件 ScheduledFuture<?> future = monitorService.scheduleWithFixedDelay( monitorRunnable, 0, 3, TimeUnit.SECONDS); monitorFutures.put(lifecycleAware, future); }
如果不需要守護(hù)了,則需要調(diào)用unsupervise:
public synchronized void unsupervise(LifecycleAware lifecycleAware) { synchronized (lifecycleAware) { Supervisoree supervisoree = supervisedProcesses.get(lifecycleAware); //1.1、設(shè)置守護(hù)組件的狀態(tài)為被丟棄 supervisoree.status.discard = true; //1.2、設(shè)置組件盼望的最新生命周期狀態(tài)為STOP this.setDesiredState(lifecycleAware, LifecycleState.STOP); //1.3、停止組件 lifecycleAware.stop(); } //2、從守護(hù)組件中移除 supervisedProcesses.remove(lifecycleAware); //3、取消定時監(jiān)控組件服務(wù) monitorFutures.get(lifecycleAware).cancel(false); //3.1、通知Purger需要進(jìn)行清理,Purger會定期的移除cancel的組件 needToPurge = true; monitorFutures.remove(lifecycleAware); }
接下來我們再看下MonitorRunnable的實(shí)現(xiàn),其負(fù)責(zé)進(jìn)行組件狀態(tài)遷移或組件故障恢復(fù):
public void run() { long now = System.currentTimeMillis(); try { if (supervisoree.status.firstSeen == null) { supervisoree.status.firstSeen = now; //1、記錄第一次狀態(tài)查看時間 } supervisoree.status.lastSeen = now; //2、記錄最后一次狀態(tài)查看時間 synchronized (lifecycleAware) { //3、如果守護(hù)組件被丟棄或出錯了,則直接返回 if (supervisoree.status.discard || supervisoree.status.error) { return; } //4、更新最后一次查看到的狀態(tài) supervisoree.status.lastSeenState = lifecycleAware.getLifecycleState(); //5、如果組件的狀態(tài)和守護(hù)組件看到的狀態(tài)不一致,則以守護(hù)組件的狀態(tài)為準(zhǔn),然后進(jìn)行初始化 if (!lifecycleAware.getLifecycleState().equals( supervisoree.status.desiredState)) { switch (supervisoree.status.desiredState) { case START: //6、如果是啟動狀態(tài),則啟動組件 try { lifecycleAware.start(); } catch (Throwable e) { if (e instanceof Error) { supervisoree.status.desiredState = LifecycleState.STOP; try { lifecycleAware.stop(); } catch (Throwable e1) { supervisoree.status.error = true; if (e1 instanceof Error) { throw (Error) e1; } } } supervisoree.status.failures++; } break; case STOP: //7、如果是停止?fàn)顟B(tài),則停止組件 try { lifecycleAware.stop(); } catch (Throwable e) { if (e instanceof Error) { throw (Error) e; } supervisoree.status.failures++; } break; default: } } catch(Throwable t) { } } }
如上代碼進(jìn)行了一些簡化,整體邏輯即定時去采集組件的狀態(tài),如果發(fā)現(xiàn)守護(hù)組件和組件的狀態(tài)不一致,則可能需要進(jìn)行啟動或停止。即守護(hù)監(jiān)視器可以用來保證組件如能失敗后自動啟動。默認(rèn)策略是總是失敗后重啟,還有一種策略是只啟動一次。
“Flume整體流程是怎樣的”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!
當(dāng)前名稱:Flume整體流程是怎樣的
文章地址:http://jinyejixie.com/article40/ijcoeo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站建設(shè)、網(wǎng)站制作、網(wǎng)站設(shè)計(jì)、網(wǎng)站導(dǎo)航、企業(yè)建站、網(wǎng)站營銷
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)