新浪開源輕量級分佈式RPC框架motan簡單示例解析
前言
好消息,支撐微博千億調用的輕量級 RPC 框架 Motan 在2016年5月份正式開源瞭,業界現在除瞭Dubbo 和 DubboX典型的分佈式RPC服務治理型框架外,又多瞭一個優秀的分佈式RPC瞭。心動瞭嗎?使用過dubbo的話,so easy的上手,官方實例如下,動起來吧
我的demo地址,參考官方實例的簡單demo,包含zookeeper註冊中心,以及服務監控平臺:https://coding.net/u/kailingchen/p/motan_Test/git
概述
Motan是一套高性能、易於使用的分佈式遠程服務調用(RPC)框架。
github項目地址:https://github.com/weibocom/motan
功能
- 支持通過spring配置方式集成,無需額外編寫代碼即可為服務提供分佈式調用能力。
- 支持集成consul、zookeeper等配置服務組件,提供集群環境的服務發現及治理能力。
- 支持動態自定義負載均衡、跨機房流量調整等高級服務調度能力。
- 基於高並發、高負載場景進行優化,保障生產環境下RPC服務高可用。
簡單調用示例
在pom中添加依賴
<dependency> <groupId>com.weibogroupId> <artifactId>motan-coreartifactId> <version>0.1.1version> dependency> <dependency> <groupId>com.weibogroupId> <artifactId>motan-transport-nettyartifactId> <version>0.1.1version> dependency> <dependency> <groupId>com.weibogroupId> <artifactId>motan-springsupportartifactId> <version>0.1.1version> dependency> <dependency> <groupId>org.springframeworkgroupId> <artifactId>spring-contextartifactId> <version>4.2.4.RELEASEversion> <dependency>
為調用方和服務方創建公共接口
src/main/java/quickstart/FooService.java
package quickstart; public interface FooService { public String hello(String name); }
編寫業務接口邏輯、創建並啟動RPC Server
src/main/java/quickstart/FooServiceImpl.java
package quickstart; public class FooServiceImpl implements FooService { public String hello(String name) { System.out.println(name + " invoked rpc service"); return "hello " + name; } }
src/main/resources/motan_server.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:motan="http://api.weibo.com/schema/motan" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://api.weibo.com/schema/motan http://api.weibo.com/schema/motan.xsd"> <bean id="serviceImpl" class="quickstart.FooServiceImpl" /> <motan:service interface="quickstart.FooService" ref="serviceImpl" export="8002" />
src/main/java/quickstart/Server.java
package quickstart; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; public class Server { public static void main(String[] args) throws InterruptedException { ApplicationContext applicationContext = new ClassPathXmlApplicationContext("classpath:motan_server.xml"); System.out.println("server start..."); } }
執行Server類中的main函數將會啟動Motan服務,並監聽8002端口.
創建並執行RPC Client
src/main/resources/motan_client.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:motan="http://api.weibo.com/schema/motan" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://api.weibo.com/schema/motan http://api.weibo.com/schema/motan.xsd"> <motan:referer id="remoteService" interface="quickstart.FooService" directUrl="localhost:8002"/>
src/main/java/quickstart/Client.java
package quickstart; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; public class Client { public static void main(String[] args) throws InterruptedException { ApplicationContext ctx = new ClassPathXmlApplicationContext("classpath:motan_client.xml"); FooService service = (FooService) ctx.getBean("remoteService"); System.out.println(service.hello("motan")); } }
執行Client類中的main函數將執行一次遠程調用,並輸出結果。
集群調用示例
在集群環境下使用Motan需要依賴外部服務發現組件,目前支持consul或zookeeper。
使用CONSUL作為註冊中心
Consul安裝與啟動
安裝(官方文檔)
# 這裡以linux為例 wget https://releases.hashicorp.com/consul/0.6.4/consul_0.6.4_linux_amd64.zip unzip consul_0.6.4_linux_amd64.zip sudo mv consul /bin
啟動(官方文檔)
測試環境啟動: consul agent -dev
ui後臺 http://localhost:8500/ui
Motan-Consul配置
在server和client中添加motan-registry-consul依賴
<dependency> <groupId>com.weibogroupId> <artifactId>motan-registry-consulartifactId> <version>0.1.1version> <dependency>
在server和client的配置文件中分別增加consul registry定義。
<motan:registry regProtocol="consul" name="my_consul" address="127.0.0.1:8500"/>
在Motan client及server配置改為通過registry服務發現。
client
<motan:referer id="remoteService" interface="quickstart.FooService" registry="my_consul"/>
server
<motan:service interface="quickstart.FooService" ref="serviceImpl" registry="my_consul" export="8002" />
server程序啟動後,需要顯式調用心跳開關,註冊到consul。
MotanSwitcherUtil.setSwitcherValue(MotanConstants.REGISTRY_HEARTBEAT_SWITCHER, true)
進入ui後臺查看服務是否正常提供調用
啟動client,調用服務
使用ZOOKEEPER作為註冊中心
ZooKeeper安裝與啟動
單機版安裝與啟動
wget http://mirrors.cnnic.cn/apache/zookeeper/zookeeper-3.4.8/zookeeper-3.4.8.tar.gz tar zxvf zookeeper-3.4.8.tar.gz cd zookeeper-3.4.8/conf/ cp zoo_sample.cfg zoo.cfg cd ../ sh bin/zkServer.sh start
Motan-ZooKeeper配置
在server和client中添加motan-registry-zookeeper依賴
<dependency> <groupId>com.weibogroupId> <artifactId>motan-registry-zookeeperartifactId> <version>0.1.1version> <dependency>
在server和client的配置文件中分別增加zookeeper registry定義。
zookeeper為單節點
<motan:registry regProtocol="zookeeper" name="my_zookeeper" address="127.0.0.1:2181"/>
zookeeper多節點集群
<motan:registry regProtocol="zookeeper" name="my_zookeeper" address="127.0.0.1:2181,127.0.0.1:2182,127.0.0.1:2183"/>
在Motan client及server配置改為通過registry服務發現。
client
<motan:referer id="remoteService" interface="quickstart.FooService" registry="my_zookeeper"/>
server
<motan:service interface="quickstart.FooService" ref="serviceImpl" registry="my_zookeeper" export="8002" />
server程序啟動後,需要顯式調用心跳開關,註冊到zookeeper。
MotanSwitcherUtil.setSwitcherValue(MotanConstants.REGISTRY_HEARTBEAT_SWITCHER, true)
啟動client,調用服務
以上就是新浪開源輕量級分佈式RPC框架motan簡單示例解析的詳細內容,更多關於新浪開源輕量級分佈式RPC框架motan的資料請關註WalkonNet其它相關文章!
推薦閱讀:
- SpringCloud整合Consul的實現
- Java中dubbo+zookeeper微服務架構簡介
- 快速學會Dubbo的配置環境及相關配置
- Java之Zookeeper註冊中心原理剖析
- springboot分佈式整合dubbo的方式