1. 程式人生 > >開發日常小結(21): 解決flume經常被系統掛起的問題 -- 開啟守護執行緒

開發日常小結(21): 解決flume經常被系統掛起的問題 -- 開啟守護執行緒

時間:2018年6月20日12:05:57

【前言】

【bug】

系統的flume執行緒啟動後,常常執行一段時間後被系統掛起;

原來的啟動指令碼:

eg:

bin/flume-ng agent –conf ./conf/ -f conf/simple-agent.properties -Dflume.root.logger=DEBUG,console -n agent 

修改後的指令碼:

eg:

nohup bin/flume-ng agent –conf ./conf/ -f conf/simple-agent.properties -Dflume.root.logger=DEBUG,console -n agent  &

使用nohup 和 & 執行指令碼,列印的日誌會儲存在nohup.log檔案,因此,監聽該檔案即可瞭解flume是否正常工作了:

tail -f nohup.log