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

溫馨提示×

溫馨提示×

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

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

zk服務器異常報警和線程服務關閉機制

發布時間:2021-06-26 10:07:47 來源:億速云 閱讀:207 作者:chen 欄目:大數據

這篇文章主要講解了“zk服務器異常報警和線程服務關閉機制”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“zk服務器異常報警和線程服務關閉機制”吧!

主要查看ZooKeeperServer

監聽與服務器關系類圖

zk服務器異常報警和線程服務關閉機制

疑問:重要線程關閉或中斷的時候?這個監聽器在什么時候被調用呢?

接口 ZooKeeperServerListener

void notifyStopping(String threadName, int errorCode);

實現類ZooKeeperServerListenerImpl

@Override

public void notifyStopping(String threadName, int exitCode) {

LOG.info("Thread {} exits, error code {}", threadName, exitCode);

zkServer.setState(State.ERROR);

}

報警危機線程ZooKeeperCriticalThread繼承了ZooKeeperThread

重新實現了父類方法,調用監聽通知方法,改變服務狀態

@Override protected void handleException(String threadName, Throwable e) { LOG.error("Severe unrecoverable error, from thread : {}", threadName, e); listener.notifyStopping(threadName, ExitCode.UNEXPECTED_ERROR.getValue()); ServerMetrics.getMetrics().UNRECOVERABLE_ERROR_COUNT.add(1); }

處理器實現ZooKeeperServerShutdownHandler

private final CountDownLatch shutdownLatch;

void handle(State state) { if (state == State.ERROR || state == State.SHUTDOWN) { shutdownLatch.countDown(); } }

把shutdownLatch減去1

1異常處理流程

SessionTrackerImpl 運行中如果遇到異常

catch (InterruptedException e) {

handleException(this.getName(), e);

}

2調用繼承類的方法handleException

3方法中調用監聽類ZooKeeperServerListener的.notifyStopping通知方法

4通知接口實現ZooKeeperServerListenerImpl具體指定處理

設置服務狀態為zkServer.setState(State.ERROR);

5調用zkServer.setState方法,內部調用ZooKeeperServerShutdownHandler處理器方法

6處理器中調用handle方法

void handle(State state) {

if (state == State.ERROR || state == State.SHUTDOWN) {

shutdownLatch.countDown();

}

}

6 計數器關閉ZooKeeperServerMain中注冊了關閉服務處理器

// Registers shutdown handler which will be used to know the

// server error or shutdown state changes.

final CountDownLatch shutdownLatch = new CountDownLatch(1);

zkServer.registerServerShutdownHandler(new ZooKeeperServerShutdownHandler(shutdownLatch));

...

containerManager.start();

// Watch status of ZooKeeper server. It will do a graceful shutdown

// if the server is not running or hits an internal error.

shutdownLatch.await();

感謝各位的閱讀,以上就是“zk服務器異常報警和線程服務關閉機制”的內容了,經過本文的學習后,相信大家對zk服務器異常報警和線程服務關閉機制這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

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

zk
AI

房产| 阿拉尔市| 晋宁县| 陇南市| 道孚县| 疏附县| 汝南县| 高密市| 民权县| 崇信县| 安吉县| 英吉沙县| 漳平市| 剑川县| 凤台县| 贵定县| 柘荣县| 黎川县| 仪征市| 舞钢市| 石首市| 峨眉山市| 旬阳县| 博湖县| 保德县| 伊吾县| 保靖县| 沂源县| 阜新市| 崇文区| 南充市| 平阴县| 二手房| 平舆县| 黔东| 宽甸| 蚌埠市| 策勒县| 赣榆县| 惠州市| 延安市|