本篇內(nèi)容主要講解“sofa-registry是什么”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“sofa-registry是什么”吧!
10年積累的成都網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計經(jīng)驗,可以快速應(yīng)對客戶對網(wǎng)站的新想法和需求。提供各種問題對應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識你,你也不認(rèn)識我。但先網(wǎng)站設(shè)計后付款的網(wǎng)站建設(shè)流程,更有樊城免費(fèi)網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。
SOFARegistry 是螞蟻金服開源的一個生產(chǎn)級、高時效、高可用的服務(wù)注冊中心
功能特性
* 支持服務(wù)發(fā)布與服務(wù)訂閱 * 支持服務(wù)變更時的主動推送 * 豐富的 REST 接口 * 采用分層架構(gòu)及數(shù)據(jù)分片,支持海量連接及海量數(shù)據(jù) * 支持多副本備份,保證數(shù)據(jù)高可用 * 基于 SOFABolt 通信框架,服務(wù)上下線秒級通知 * AP 架構(gòu),保證網(wǎng)絡(luò)分區(qū)下的可用性
其支持服務(wù)發(fā)布與服務(wù)訂閱
功能,依賴一致性hash算法, 其簡介:參見:https://www.jianshu.com/p/e968c081f563
在解決分布式系統(tǒng)中負(fù)載均衡的問題時候可以使用Hash算法讓固定的一部分請求落到同一臺服務(wù)器上,這樣每臺服務(wù)器固定處理一部分請求(并維護(hù)這些請求的信息),起到負(fù)載均衡的作用。 但是普通的余數(shù)hash(hash(比如用戶id)%服務(wù)器機(jī)器數(shù))算法伸縮性很差,當(dāng)新增或者下線服務(wù)器機(jī)器時候,用戶id與服務(wù)器的映射關(guān)系會大量失效。一致性hash則利用hash環(huán)對其進(jìn)行了改進(jìn)。
核心代碼參見:代碼地址:[ConsistentHash.java](https://github.com/sofastack/sofa- registry/blob/master/server/consistency/src/main/java/com/alipay/sofa/registry/consistency/hash/ConsistentHash.java "ConsistentHash.java")
private final SortedMapcircle = new TreeMap<>(); /** * This returns the closest node for the object. If the object is the node it * should be an exact hit, but if it is a value traverse to find closest * subsequent node. * @param key the key * @return node for */ public T getNodeFor(Object key) { if (circle.isEmpty()) { return null; } int hash = hashFunction.hash(key); T node = circle.get(hash); if (node == null) { // inexact match -- find the next value in the circle SortedMap tailMap = circle.tailMap(hash); hash = tailMap.isEmpty() ? circle.firstKey() : tailMap.firstKey(); node = circle.get(hash); } return node; }
獲取大于該node節(jié)點對應(yīng)hash值的的hash環(huán)(tailMap方法)信息,即tailMap
若tailMap不為空,則獲取最近的一個node節(jié)點(firstKey() 方法)
若tailMap為空,則獲取hash環(huán)的第一個node節(jié)點(firstKey() 方法)
tailMap(K fromKey) 方法用于返回此映射,其鍵大于或等于fromKey的部分視圖。 返回的映射受此映射支持,因此改變返回映射反映在此映射中,反之亦然。
新的節(jié)點嘗試注冊進(jìn)來,會調(diào)用addNode(T node)
方法,同時會有虛擬節(jié)點存在
/** * Add a new node to the consistent hash * * This is not thread safe. * @param node the node */ private void addNode(T node) { realNodes.add(node); for (int i = 0; i < numberOfReplicas; i++) { // The string addition forces each replica to have different hash circle.put(hashFunction.hash(node.getNodeName() + SIGN + i), node); } }
到此,相信大家對“sofa-registry是什么”有了更深的了解,不妨來實際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!