您好,登錄后才能下訂單哦!
本篇內容介紹了“Nacos Naming活躍檢測方法是什么”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
臨時服務實例在注冊到naming server上之后,會周期性得發送心跳信息來保持節點的活躍。同時,naming server會周期性檢測每個實例最后一次收到心跳信息的時間戳,摘除超時的節點并通知所有訂閱的客戶端。
實例活躍性檢測的定時任務封裝在Service類中,在init方法里啟動:
public class Service extends com.alibaba.nacos.api.naming.pojo.Service implements Record, RecordListener<Instances> { private ClientBeatCheckTask clientBeatCheckTask = new ClientBeatCheckTask(this); public void init() { // 啟動檢測任務 HealthCheckReactor.scheduleCheck(clientBeatCheckTask); ... } }
ClientBeatCheckTask會獲取當前服務所有的臨時節點并一一檢測該節點是否超時:
public class ClientBeatCheckTask implements Runnable { public void run() { try { // 當前服務不由本節點操作,則跳過 if (!getDistroMapper().responsible(service.getName())) { return; } // 所有臨時節點 List<Instance> instances = service.allIPs(true); // first set health status of instances: for (Instance instance : instances) { if (System.currentTimeMillis() - instance.getLastBeat() > ClientBeatProcessor.CLIENT_BEAT_TIMEOUT) { if (!instance.isMarked()) { if (instance.isHealthy()) { // 設置為下線 instance.setHealthy(false); // 通知訂閱客戶端 getPushService().serviceChanged(service.getNamespaceId(), service.getName()); } } } } // .... // then remove obsolete instances: for (Instance instance : instances) { if (System.currentTimeMillis() - instance.getLastBeat() > service.getIpDeleteTimeout()) { // delete instance deleteIP(instance); } } } catch (Exception e) { Loggers.SRV_LOG.warn("Exception while processing client beat time out.", e); } } }
client通過調用/beat這一api來發送心跳信息,該請求在InstanceController.beat(..)方法中被處理,后續調用Service.processClientBeat(..)方法:
// Service類 public void processClientBeat(final RsInfo rsInfo) { ClientBeatProcessor clientBeatProcessor = new ClientBeatProcessor(); clientBeatProcessor.setService(this); clientBeatProcessor.setRsInfo(rsInfo); HealthCheckReactor.scheduleNow(clientBeatProcessor); }
ClientBeatProcessor會更新instance的lastBeat信息:
// ClientBeatProcessor public void run() { Service service = this.service; String ip = rsInfo.getIp(); String clusterName = rsInfo.getCluster(); int port = rsInfo.getPort(); Cluster cluster = service.getClusterMap().get(clusterName); List<Instance> instances = cluster.allIPs(true); for (Instance instance : instances) { if (instance.getIp().equals(ip) && instance.getPort() == port) { // 更新心跳時間 instance.setLastBeat(System.currentTimeMillis()); if (!instance.isMarked()) { if (!instance.isHealthy()) { instance.setHealthy(true); getPushService().serviceChanged(service.getNamespaceId(), this.service.getName()); } } } } }
“Nacos Naming活躍檢測方法是什么”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。