集群调用示例
在集群环境下使用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
Motan-Consul配置
- 在server和client中添加motan-registry-consul依赖
- <dependency>
- <groupId>com.weibo</groupId>
- <artifactId>motan-registry-consul</artifactId>
- <version>RELEASE</version>
- </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.weibo</groupId>
- <artifactId>motan-registry-zookeeper</artifactId>
- <version>RELEASE</version>
- </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,调用服务