91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Dubbo多注冊中心和Zookeeper服務的遷移方法是什么

發布時間:2021-12-17 10:53:09 來源:億速云 閱讀:169 作者:iii 欄目:大數據

本篇內容介紹了“Dubbo多注冊中心和Zookeeper服務的遷移方法是什么”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

一、Dubbo多注冊中心

1、 應用場景

例如阿里有些服務來不及在青島部署,只在杭州部署,而青島的其它應用需要引用此服務,就可以將服務同時注冊到兩個注冊中心。

consumer.xml

<?xml version="1.0" encoding="UTF-8"?>  

<beans xmlns="http://www.springframework.org/schema/beans"  

    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  

    xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"  

    xsi:schemaLocation="http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans.xsdhttp://code.alibabatech.com/schema/dubbohttp://code.alibabatech.com/schema/dubbo/dubbo.xsd">  

    <dubbo:application name="world"  />  

    <!-- 多注冊中心配置 -->  

    <dubbo:registry id="hangzhouRegistry" address="10.20.141.150:9090" />  

    <dubbo:registry id="qingdaoRegistry" address="10.20.141.151:9010" default="false" />  

    <!-- 向多個注冊中心注冊 -->  

    <dubbo:service interface="com.alibaba.hello.api.HelloService" version="1.0.0" ref="helloService" registry="hangzhouRegistry,qingdaoRegistry" />  

</beans>


2、不同服務使用不同注冊中心

比如:CRM有些服務是專門為國際站設計的,有些服務是專門為中文站設計的。

consumer.xml

<?xml version="1.0" encoding="UTF-8"?>  

<beans xmlns="http://www.springframework.org/schema/beans"  

    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  

    xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"  

    xsi:schemaLocation="http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans.xsdhttp://code.alibabatech.com/schema/dubbohttp://code.alibabatech.com/schema/dubbo/dubbo.xsd">  

    <dubbo:application name="world"  />  

    <!-- 多注冊中心配置 -->  

    <dubbo:registry id="chinaRegistry" address="10.20.141.150:9090" />  

    <dubbo:registry id="intlRegistry" address="10.20.154.177:9010" default="false" />  

    <!-- 向中文站注冊中心注冊 -->  

    <dubbo:service interface="com.alibaba.hello.api.HelloService" version="1.0.0" ref="helloService" registry="chinaRegistry" />  

    <!-- 向國際站注冊中心注冊 -->  

    <dubbo:service interface="com.alibaba.hello.api.DemoService" version="1.0.0" ref="demoService" registry="intlRegistry" />  

</beans> 

3、多注冊中心引用

比如:CRM需同時調用中文站和國際站的PC2服務,PC2在中文站和國際站均有部署,接口及版本號都一樣,但連的數據庫不一樣。

consumer.xml

<?xml version="1.0" encoding="UTF-8"?>  

<beans xmlns="http://www.springframework.org/schema/beans"  

    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  

    xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"  

    xsi:schemaLocation="http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans.xsdhttp://code.alibabatech.com/schema/dubbohttp://code.alibabatech.com/schema/dubbo/dubbo.xsd">  

    <dubbo:application name="world"  />  

    <!-- 多注冊中心配置 -->  

    <dubbo:registry id="chinaRegistry" address="10.20.141.150:9090" />  

    <dubbo:registry id="intlRegistry" address="10.20.154.177:9010" default="false" />  

    <!-- 引用中文站服務 -->  

    <dubbo:reference id="chinaHelloService" interface="com.alibaba.hello.api.HelloService" version="1.0.0" registry="chinaRegistry" />  

    <!-- 引用國際站站服務 -->  

    <dubbo:reference id="intlHelloService" interface="com.alibaba.hello.api.HelloService" version="1.0.0" registry="intlRegistry" />  

</beans>  

consumer.xml如果只是測試環境臨時需要連接兩個不同注冊中心,使用豎號分隔多個不同注冊中心地址:

<?xml version="1.0" encoding="UTF-8"?>  

<beans xmlns="http://www.springframework.org/schema/beans"  

    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  

    xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"  

    xsi:schemaLocation="http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans.xsdhttp://code.alibabatech.com/schema/dubbohttp://code.alibabatech.com/schema/dubbo/dubbo.xsd">  

    <dubbo:application name="world"  />  

    <!-- 多注冊中心配置,豎號分隔表示同時連接多個不同注冊中心,同一注冊中心的多個集群地址用逗號分隔 -->  

    <dubbo:registry address="10.20.141.150:9090|10.20.154.177:9010" />  

    <!-- 引用服務 -->  

    <dubbo:reference id="helloService" interface="com.alibaba.hello.api.HelloService" version="1.0.0" />  

</beans>  

二、Dubbo多注冊中心的服務遷移

1、顧名思義,將服務從一個地兒遷到另一個地兒,例如從A地遷到B地。

2、如何實現多注冊中心的服務遷移

步驟一

     添加B地的注冊中心地址,AB兩地的注冊中心間用英文的|分割,(同一個服務集群的zk節點使用逗號分割)

     例如:dubbo.registry.address=192.168.220.128:2181|192.168.221.129:2181,192.168.221.130:2181,192.168.221.131:2181 這就是兩個注冊中心配置sample

步驟二

     Jenkins重新構建服務,zk1本身就是含有全部服務的,現在構建是將服務部署到zk2集群中。這樣就可實現A的zk和B地的zk兩套注冊中心享有兩套相同的服務

步驟三

     把服務的消費端都構建一遍;

步驟四

     先取消服務消費者調用zk1的服務,具體實施就是去掉第一個zk的配置,然后構建消費者

步驟五

     把服務提供者的配置也取消;然后重新構建服務提供者。這樣就完成了將zk1中的所有服務遷移到zk2中,且去除zk1中的所有服務。

“Dubbo多注冊中心和Zookeeper服務的遷移方法是什么”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

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

AI

原阳县| 永胜县| 海伦市| 泽普县| 昆山市| 龙南县| 泰兴市| 隆尧县| 克拉玛依市| 马公市| 仁寿县| 瓦房店市| 景东| 奉化市| 洛扎县| 九台市| 蓝山县| 大港区| 霍邱县| 龙陵县| 民丰县| 沙河市| 肇东市| 凤台县| 临颍县| 高州市| 兴义市| 合川市| 梧州市| 舞钢市| 永春县| 辽源市| 天镇县| 盐池县| 崇州市| 仙游县| 凤阳县| 武山县| 万源市| 于都县| 雷山县|