亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

电白县| 郴州市| 夹江县| 弥勒县| 阿拉善右旗| 威海市| 灵丘县| 丰镇市| 绵阳市| 方城县| 景宁| 城口县| 绍兴县| 临沭县| 砀山县| 彭水| 迁西县| 榆林市| 丰台区| 宿迁市| 新竹市| 杨浦区| 迁西县| 科技| 江西省| 铜鼓县| 四平市| 莒南县| 宾川县| 永丰县| 凤阳县| 小金县| 九寨沟县| 平武县| 阳曲县| 昌图县| 康定县| 调兵山市| 成安县| 霍山县| 阿克陶县|