SpringCloud之Ribbon进行服务调用

x33g5p2x  于2022-01-11 转载在 Spring  
字(8.0k)|赞(0)|评价(0)|浏览(494)

前置内容
(1)、微服务理论入门和手把手带你进行微服务环境搭建及支付、订单业务编写
(2)、SpringCloud之Eureka服务注册与发现
(3)、SpringCloud之Zookeeper进行服务注册与发现
(4)、SpringCloud之Consul进行服务注册与发现

1、Robbon

1.1、Ribbon概述

(1)、Ribbon是什么?

  • SpringCloud-Ribbon是基于Netflix Ribbon实现的一套客户端负载均衡的工具。
  • 简单来说,RibbonNetflix发布的开源项目,主要功能是提供客户端的软件负载均衡算法和服务调用。Ribbon客户端组件提供一系列完善的配置如连接超时、重拾等。简单的说,就是在配置文件中列出Load Balancer(简称LB)后面的所有机器,Ribbon会自动的帮助你基于某种规则(如简单轮询,随即连接等)去连接这些机器。我们很容易使用Ribbon实现自定义的负载均衡算法。
  • 一句话就是 负载均衡+RestTemplate调用

(2)、Ribbon的官网

(3)、负载均衡(LB)

  • 负载均衡就是将用户的请求平摊的分配到多个服务上,从而达到系统的HA(高可用)。常见的负载均衡由软件nginxLVSF5
  1. 集中式LB:就是在服务的消费方和提供方之间使用独立的LB设施(可以是硬件,如F5,也可以是软件,如nginx),由该设施负责把访问请求通过某种策略转发至服务的提供方。
  2. 进程内LB:将LB逻辑集成到消费方,消费方从服务注册中心获知有哪些地址可用,然后自己再从这些地址中选择出一个合适的服务器。Ribbon就属于进程内LB,它只是一个类库,集成于消费方进程,消费方通过它来获取服务提供方的地址。

(4)、Ribbon本地负载均衡客户端和Nginx服务端负载均衡的区别

  1. Nginx是服务器负载均衡,客户端所有请求都会交给nginx实现转发请求。即负载均衡是由服务端实现的。
  2. Ribbon本地负载均衡,在调用微服务接口的时候,会在注册中心获取注册信息列表之后缓存到JVM本地,从而在本地实现RPC远程服务调用技术。

1.2、Ribbon负载均衡演示

(1)、架构说明

  • Ribbon其实就是一个软负载均衡的客户端组件,他可以和其他所需请求的客户端结合使用,和eureka结合只是其中的一个实例。

Ribbon在工作时分为两步

  1. 第一步先选择EurekaServer,他优先选择在同一个区域内负载较少的server
  2. 第二步再根据用户指定的策略,在从server取到的服务注册列表中选择一个地址。其中Ribbon提供了多种策略:比如轮询、随机和根据响应时间加权。

(2)、POM文件

  • 所以在引入Eureka的整合包中就包含了整合Ribbonjar包。
  • 所以我们前面实现的8001和8002交替访问的方式就是所谓的负载均衡。

(3)、RestTemplate的说明

  1. getForObject:返回对象为响应体中数据转化成的对象,基本上可以理解为Json
  2. getForEntity:返回对象为ResponseEntity对象,包含了响应中的一些重要信息,比如响应头、响应状态码、响应体等。
  3. postForObject
  4. postForEntity

1.3、Ribbon核心组件IRule

1. 主要的负载规则

  1. RoundRobinRule:轮询
  2. RandomRule:随机
  3. RetryRule:先按照RoundRobinRule的策略获取服务,如果获取服务失败则在指定时间内会进行重试
  4. WeightedResponseTimeRule:对RoundRobinRule的扩展,响应速度越快的实例选择权重越大,越容易被选择
  5. BestAvailableRule:会先过滤掉由于多次访问故障而处于断路器跳闸状态的服务,然后选择一个并发量最小的服务
  6. AvailabilityFilteringRule:先过滤掉故障实例,再选择并发较小的实例
  7. ZoneAvoidanceRule:默认规则,复合判断server所在区域的性能和server的可用性选择服务器

2. 如何替换负载规则

  1. cloud-consumer-order80包下的配置进行修改。
  2. 我们自己自定义的配置类不能放在@ComponentScan所扫描的当前包以及子包下,否则我们自定义的这个配置类就会被所有的Ribbon客户端所共享,达不到特殊化定制的目的了。
  3. com.xiao的包下新建一个myrule的子包。

  1. myrule的包下新建一个MySelfRule配置类
  1. import com.netflix.loadbalancer.IRule;
  2. import com.netflix.loadbalancer.RandomRule;
  3. import org.springframework.context.annotation.Bean;
  4. import org.springframework.context.annotation.Configuration;
  5. @Configuration
  6. public class MySelfRule {
  7. @Bean
  8. public IRule getRandomRule(){
  9. return new RandomRule(); // 新建随机访问负载规则
  10. }
  11. }
  1. 对主启动类进行修改,修改为如下:
  1. import com.xiao.myrule.MySelfRule;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
  5. import org.springframework.cloud.netflix.ribbon.RibbonClient;
  6. @SpringBootApplication
  7. @EnableEurekaClient
  8. @RibbonClient(name = "CLOUD-PAYMENT-SERVICE",configuration = MySelfRule.class)
  9. public class OrderMain80 {
  10. public static void main(String[] args) {
  11. SpringApplication.run(OrderMain80.class,args);
  12. }
  13. }
  1. 测试结果
  • 结果就是以我们最新配置的随机方式进行访问的

1.4、Ribbon负载均衡算法

1.4.1、轮询算法原理

  • 负载均衡算法rest接口第几次请求数 % 服务器集群总数量 = 实际调用服务器位置下标,每次服务重新启动后rest接口计数从1开始。

1.4.2、RoundRobinRule 源码

  1. import com.netflix.client.config.IClientConfig;
  2. import java.util.List;
  3. import java.util.concurrent.atomic.AtomicInteger;
  4. import org.slf4j.Logger;
  5. import org.slf4j.LoggerFactory;
  6. public class RoundRobinRule extends AbstractLoadBalancerRule {
  7. private AtomicInteger nextServerCyclicCounter;
  8. private static final boolean AVAILABLE_ONLY_SERVERS = true;
  9. private static final boolean ALL_SERVERS = false;
  10. private static Logger log = LoggerFactory.getLogger(RoundRobinRule.class);
  11. public RoundRobinRule() {
  12. this.nextServerCyclicCounter = new AtomicInteger(0);
  13. }
  14. public RoundRobinRule(ILoadBalancer lb) {
  15. this();
  16. this.setLoadBalancer(lb);
  17. }
  18. public Server choose(ILoadBalancer lb, Object key) {
  19. if (lb == null) {
  20. log.warn("no load balancer");
  21. return null;
  22. } else {
  23. Server server = null;
  24. int count = 0;
  25. while(true) {
  26. if (server == null && count++ < 10) {
  27. // 获取状态为up的服务提供者
  28. List<Server> reachableServers = lb.getReachableServers();
  29. // 获取所有的服务提供者
  30. List<Server> allServers = lb.getAllServers();
  31. int upCount = reachableServers.size();
  32. int serverCount = allServers.size();
  33. if (upCount != 0 && serverCount != 0) {
  34. // 对取模获得的下标进行获取相关的服务提供者
  35. int nextServerIndex = this.incrementAndGetModulo(serverCount);
  36. server = (Server)allServers.get(nextServerIndex);
  37. if (server == null) {
  38. Thread.yield();
  39. } else {
  40. if (server.isAlive() && server.isReadyToServe()) {
  41. return server;
  42. }
  43. server = null;
  44. }
  45. continue;
  46. }
  47. log.warn("No up servers available from load balancer: " + lb);
  48. return null;
  49. }
  50. if (count >= 10) {
  51. log.warn("No available alive servers after 10 tries from load balancer: " + lb);
  52. }
  53. return server;
  54. }
  55. }
  56. }
  57. private int incrementAndGetModulo(int modulo) {
  58. int current;
  59. int next;
  60. do {
  61. // 先加一再取模
  62. current = this.nextServerCyclicCounter.get();
  63. next = (current + 1) % modulo;
  64. // CAS判断,如果判断成功就返回true,否则就一直自旋
  65. } while(!this.nextServerCyclicCounter.compareAndSet(current, next));
  66. return next;
  67. }
  68. }

1.4.3、手写轮询算法

1. 修改支付模块的Controller

添加以下内容

  1. @GetMapping(value = "/payment/lb")
  2. public String getPaymentLB(){
  3. return ServerPort;
  4. }

2. ApplicationContextConfig去掉@LoadBalanced注解

3. LoadBalancer接口

  1. import org.springframework.cloud.client.ServiceInstance;
  2. import java.util.List;
  3. public interface LoadBalancer {
  4. //收集服务器总共有多少台能够提供服务的机器,并放到list里面
  5. ServiceInstance instances(List<ServiceInstance> serviceInstances);
  6. }

4. 编写MyLB类

  1. import org.springframework.cloud.client.ServiceInstance;
  2. import org.springframework.stereotype.Component;
  3. import java.util.List;
  4. import java.util.concurrent.atomic.AtomicInteger;
  5. @Component
  6. public class MyLB implements LoadBalancer {
  7. private AtomicInteger atomicInteger = new AtomicInteger(0);
  8. //坐标
  9. private final int getAndIncrement(){
  10. int current;
  11. int next;
  12. do {
  13. current = this.atomicInteger.get();
  14. next = current >= 2147483647 ? 0 : current + 1;
  15. }while (!this.atomicInteger.compareAndSet(current,next)); //第一个参数是期望值,第二个参数是修改值是
  16. System.out.println("*******第几次访问,次数next: "+next);
  17. return next;
  18. }
  19. @Override
  20. public ServiceInstance instances(List<ServiceInstance> serviceInstances) { //得到机器的列表
  21. int index = getAndIncrement() % serviceInstances.size(); //得到服务器的下标位置
  22. return serviceInstances.get(index);
  23. }
  24. }

5. 修改OrderController类

  1. import com.xiao.cloud.entities.CommonResult;
  2. import com.xiao.cloud.entities.Payment;
  3. import com.xiao.cloud.lb.LoadBalancer;
  4. import lombok.extern.slf4j.Slf4j;
  5. import org.springframework.beans.factory.annotation.Autowired;
  6. import org.springframework.cloud.client.ServiceInstance;
  7. import org.springframework.cloud.client.discovery.DiscoveryClient;
  8. import org.springframework.http.ResponseEntity;
  9. import org.springframework.web.bind.annotation.GetMapping;
  10. import org.springframework.web.bind.annotation.PathVariable;
  11. import org.springframework.web.bind.annotation.RestController;
  12. import org.springframework.web.client.RestTemplate;
  13. import javax.annotation.Resource;
  14. import java.net.URI;
  15. import java.util.List;
  16. @RestController
  17. @Slf4j
  18. public class OrderController {
  19. // public static final String PAYMENT_URL = "http://localhost:8001";
  20. public static final String PAYMENT_URL = "http://CLOUD-PAYMENT-SERVICE";
  21. @Resource
  22. private RestTemplate restTemplate;
  23. @Resource
  24. private LoadBalancer loadBalancer;
  25. @Resource
  26. private DiscoveryClient discoveryClient;
  27. @GetMapping("/consumer/payment/create")
  28. public CommonResult<Payment> create( Payment payment){
  29. return restTemplate.postForObject(PAYMENT_URL+"/payment/create",payment,CommonResult.class); //写操作
  30. }
  31. @GetMapping("/consumer/payment/get/{id}")
  32. public CommonResult<Payment> getPayment(@PathVariable("id") Long id){
  33. return restTemplate.getForObject(PAYMENT_URL+"/payment/get/"+id,CommonResult.class);
  34. }
  35. @GetMapping("/consumer/payment/getForEntity/{id}")
  36. public CommonResult<Payment> getPayment2(@PathVariable("id") Long id){
  37. ResponseEntity<CommonResult> entity = restTemplate.getForEntity(PAYMENT_URL+"/payment/get/"+id,CommonResult.class);
  38. if (entity.getStatusCode().is2xxSuccessful()){
  39. // log.info(entity.getStatusCode()+"\t"+entity.getHeaders());
  40. return entity.getBody();
  41. }else {
  42. return new CommonResult<>(444,"操作失败");
  43. }
  44. }
  45. @GetMapping(value = "/consumer/payment/lb")
  46. public String getPaymentLB(){
  47. List<ServiceInstance> instances = discoveryClient.getInstances("CLOUD-PAYMENT-SERVICE");
  48. if (instances == null || instances.size() <= 0){
  49. return null;
  50. }
  51. ServiceInstance serviceInstance = loadBalancer.instances(instances);
  52. URI uri = serviceInstance.getUri();
  53. return restTemplate.getForObject(uri+"/payment/lb",String.class);
  54. }
  55. }

6. 测试结果

  • 最后是在80018002两个之间进行轮询访问。
  • 控制台输出如下

7. 包结构示意图

相关文章