您好,登錄后才能下訂單哦!
這篇文章主要講解了“zk單機怎么配置serverConfig”,文中的講解內(nèi)容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“zk單機怎么配置serverConfig”吧!
ServerConfig類圖如下
配置參數(shù)
clientPortAddress | 連接地址 |
secureClientPortAddress | |
dataDir | 快照日志目錄 |
dataLogDir | 事務日志目錄 |
tickTime | tick時間,表示時間單位 |
maxClientCnxns | |
minSessionTimeout | 會話超時檢測最短時間tickTime*2 |
參數(shù)解析
入口
只有一個參數(shù),表示為一個配置文件地址
如果參數(shù)個數(shù)大于1,分別表示端口,dataDir,tickTime,initializeAndRun
initializeAndRun
ServerConfig config = new ServerConfig(); if (args.length == 1) { config.parse(args[0]); } else { config.parse(args); } //解析配置文件zoo.cfg runFromConfig(config);
函數(shù) public void parse(String path) throws ConfigException { QuorumPeerConfig config = new QuorumPeerConfig(); //Quorum配置路徑 config.parse(path); // let qpconfig parse the file and then pull the stuff we are // interested in readFrom(config); } public void readFrom(QuorumPeerConfig config) { //讀取配置對象屬性 }
感謝各位的閱讀,以上就是“zk單機怎么配置serverConfig”的內(nèi)容了,經(jīng)過本文的學習后,相信大家對zk單機怎么配置serverConfig這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。