转载

07-06Spring Cloud 入门 之 Ribbon 篇(二)

一、前言

上一篇 《Spring Cloud 入门 之 Eureka 篇(一)》 介绍了微服务的搭建,服务注册与发现。但在文章中留了一个小尾巴--如何正确使用 Eureka 进行服务发现并调用服务。

本篇文章将介绍如何使用 Ribbon 完成发现服务的调用以及其负载均衡的规则的使用。

二、简单介绍

Spring Cloud Ribbon 是基于 Netflix Ribbon 实现的一套客户端负载均衡工具,其主要功能是提供客户端的软件负载均衡算法,将 Netflix 的中间层服务连接在一起。

其运行原理如下图:

07-06Spring Cloud 入门 之 Ribbon 篇(二)

Ribbon 运行时分成 2 个步骤:

  1. 1) 先选择在同一个区域负载较少的 EurekaServer;
  2. 2) 再根据用户指定的策略,在从 EurekaServer 中获取注册列表中的服务信息进行调用。

其中,Ribbon 提供多种负载均衡策略:如轮询、随机、响应时间加权等。

三、实战演练

我们在 user-web 项目的基础上进行修改。不清楚的读者请先转移至 《Spring Cloud 入门 之 Eureka 篇(一)》 进行浏览。

此外,笔者额外的创建 2 个 user-provider 项目,即现在有 3 个 user-provider 项目给 user-consumer 进行消费。

  1. 添加依赖:
  1. <dependency>
  2. <groupId>org.springframework.cloud</groupId>
  3. <artifactId>spring-cloud-starter-ribbon</artifactId>
  4. </dependency>

其实,添加 Eureka 包时,会自动添加 Ribbon 依赖包。

  1. 修改请求类:
  1. @Configuration
  2. public class RestConfiguration {
  3. @Bean
  4. @LoadBalanced
  5. public RestTemplate getRestTemplate() {
  6. return new RestTemplate();

正如上文介绍的,Ribbon 是客户端负载均衡工具,所以在 getRestTemplate 方法上添加 @LoadBalanced 注解实现负载均衡。

  1. 修改请求地址:
  1. @RestController
  2. @RequestMapping("/user")
  3. public class UserController {
  4. @Autowired
  5. private RestTemplate restTemplate;
  6. // @RequestMapping("get/{id}")
  7. // public User get(@PathVariable("id") Integer id) throws Exception {
  8. // // 没有使用 Eureka 时,uri 为消息提供者的地址,需要指定 ip 和 端口
  9. // return restTemplate.getForObject(new URI("http://localhost:8081/provider/user/get/" + id), User.class);
  10. // }
  11. // @Autowired
  12. // private DiscoveryClient client;
  13. //
  14. // @RequestMapping("get/{id}")
  15. // public User get(@PathVariable("id") Integer id) throws Exception {
  16. //
  17. // List<ServiceInstance> list = this.client.getInstances("USER-API");
  18. // String uri = "";
  19. // for (ServiceInstance instance : list) {
  20. // if (instance.getUri() != null && !"".equals(instance.getUri().toString())) {
  21. // uri = instance.getUri().toString();
  22. // break;
  23. // }
  24. // }
  25. // return restTemplate.getForObject(uri + "/provider/user/get/" + id, User.class);
  26. // }
  27. @RequestMapping("get/{id}")
  28. public User get(@PathVariable("id") Integer id) throws Exception {
  29. // 使用 Eureka + Ribbon 后,uri 填写服务名称即可
  30. return restTemplate.getForObject("http://USER-API/provider/user/get/" + id, User.class);

修改 DiscoveryClient 相关代码,使用 USER-API 服务名称作为请求 URL。

  1. 在启动类上将 @EnableDiscoveryClient 替换成 @EnableEurekaClient 注解。

完成上边 4 个操作后,启动 user-consumer 项目使用浏览器访问接口,运行结果如下:

07-06Spring Cloud 入门 之 Ribbon 篇(二)

由图可知,Ribbon 默认使用负载均衡的策略是轮询,对服务进行调用。

四、负载均衡策略

4.1 策略规则

Ribbon 提供 IRule 接口,该接口定义了如何访问服务的策略,以下是该接口的实现类:

  1. 1) RoundRobinRule:轮询,默认使用的规则;
  2. 2) RandomRule:随机;
  3. 3) AvailabilityFilteringRule:先过滤由于多次访问故障而处于断路器跳闸状态以及并发连接数量超过阀值得服务,然后从剩余服务列表中按照轮询策略进行访问;
  4. 4) WeightedResponseTimeRule:根据平均响应时间计算所有的权重,响应时间越快服务权重越有可能被选中;
  5. 5) RetryRule:先按照 RoundRobinRule 策略获取服务,如果获取服务失败则在指定时间内进行重试,获取可用服务;
  6. 6) BestAvailableRule:先过滤由于多次访问故障而处于断路器跳闸状态的服务,然后选择并发量最小的服务;
  7. 7) ZoneAvoidanceRule:判断 server 所在区域的性能和 server 的可用性来选择服务器。

4.2 策略使用

  1. @Configuration
  2. public class RestConfiguration {
  3. @Bean
  4. @LoadBalanced
  5. public RestTemplate getRestTemplate() {
  6. return new RestTemplate();
  7. @Bean
  8. public IRule testRule() {
  9. return new RandomRule();

手动创建负载均衡规则对象,本次测试使用的策略是随机。

启动 user-consumer 项目使用浏览器访问接口,运行结果如下:

07-06Spring Cloud 入门 之 Ribbon 篇(二)

由图可知,随机策略已生效,负载均衡的策略由轮询变成了随机。

五、案例源码

Ribbon demo 源码

原文  https://www.extlight.com/2018/07/06/Spring-Cloud-入门-之-Ribbon-篇(二)/
正文到此结束
Loading...