当前位置:   article > 正文

客户端负载均衡(Ribbon)_ribbon 客户端 负载均衡

ribbon 客户端 负载均衡

目录

服务器端负载均衡

客户端负载均衡

Ribbon负载均衡示例搭建

创建服务提供者

引入依赖

添加配置

服务提供者

创建启动类

启动服务

服务消费者

引入Ribbon依赖

添加配置

使用Ribbon客户端

切换Ribbon负载均衡策略

自定义Ribbon客户端

自定义Ribbon客户端的默认配置

通过配置属性自定义Ribbon客户端

脱离Eureka使用Ribbon

在Ribbon中禁用Eureka

Ribbon缓存配置

参考文章


服务器端负载均衡

负载均衡是我们处理高并发、缓解网络压力和进行服务器扩容的重要手段之一,但是一般情况下我们所说的负载均衡通常都是指服务器端负载均衡,服务器端负载均衡又分为两种,一种是硬件负载均衡,还有一种是软件负载均衡。

硬件负载均衡主要通过在服务器节点之前安装专门用于负载均衡的设备,常见的如:F5。

软件负载均衡则主要是在服务器上安装一些具有负载均衡功能的软件来完成请求分发进而实现负载均衡,常见的如:LVS 、 Nginx 、Haproxy。

无论是硬件负载均衡还是软件负载均衡,它的工作原理都不外乎下面这张图:

客户端负载均衡

而微服务的出现,则为负载均衡的实现提供了另外一种思路:把负载均衡的功能以库的方式集成到服务的消费方,而不再是由一台指定的负载均衡设备集中提供。这种方案称为软负载均衡(Soft Load Balancing)或者客户端负载均衡。常见的如:Spring Cloud中的 Ribbon

Ribbon是一个基于HTTP和TCP的客户端负载均衡器,当我们将Ribbon和Eureka一起使用时,Ribbon会到Eureka注册中心去获取服务端列表,然后进行轮询访问以到达负载均衡的作用,客户端负载均衡也需要心跳机制去维护服务端清单的有效性,当然这个过程需要配合服务注册中心一起完成。

服务器端负载均衡 VS 客户端负载均衡的特点如下:

服务器端负载均衡 客户端先发送请求到负载均衡服务器,然后由负载均衡服务器通过负载均衡算法,在众多可用的服务器之中选择一个来处理请求。

客户端负载均衡 客户端自己维护一个可用服务器地址列表,在发送请求前先通过负载均衡算法选择一个将用来处理本次请求的服务器,然后再直接将请求发送至该服务器。

接下来我们将延续上一章的Eureka注册中心,继续搭建一个基于Ribbon的客户端负载均衡示例。

Ribbon负载均衡示例搭建

创建服务提供者

引入依赖

新建一个 Maven 工程,取名 message-service 用来提供消息服务,在其 pom.xml 文件中引入依赖,内容如下:

  1. <parent>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-parent</artifactId>
  4. <version>2.0.6.RELEASE</version>
  5. </parent>
  6. <properties>
  7. <spring-cloud.version>Finchley.SR2</spring-cloud.version>
  8. </properties>
  9. <dependencies>
  10. <dependency>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-web</artifactId>
  13. </dependency>
  14. <!-- Eureka-Client 依赖 -->
  15. <dependency>
  16. <groupId>org.springframework.cloud</groupId>
  17. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  18. </dependency>
  19. </dependencies>
  20. <dependencyManagement>
  21. <dependencies>
  22. <!-- SpringCloud 版本控制依赖 -->
  23. <dependency>
  24. <groupId>org.springframework.cloud</groupId>
  25. <artifactId>spring-cloud-dependencies</artifactId>
  26. <version>${spring-cloud.version}</version>
  27. <type>pom</type>
  28. <scope>import</scope>
  29. </dependency>
  30. </dependencies>
  31. </dependencyManagement>

添加配置

application.yml 添加配置如下: 

  1. spring:
  2. application:
  3. name: message-service
  4. eureka:
  5. client:
  6. serviceUrl:
  7. defaultZone: http://localhost:8761/eureka/

服务提供者

创建一个 MessageController 控制器对外提供一个http接口服务。

  1. import org.springframework.beans.factory.annotation.Value;
  2. import org.springframework.web.bind.annotation.GetMapping;
  3. import org.springframework.web.bind.annotation.RequestMapping;
  4. import org.springframework.web.bind.annotation.RestController;
  5. @RestController
  6. @RequestMapping("/api/v1/msg")
  7. public class MessageController {
  8. @Value("${server.port}")
  9. private String port;
  10. /**
  11. * 返回一条消息
  12. */
  13. @GetMapping("/get")
  14. public String getMsg() {
  15. return "This message is sent from port: " + port;
  16. }
  17. }

创建启动类

  1. import org.springframework.boot.WebApplicationType;
  2. import org.springframework.boot.autoconfigure.SpringBootApplication;
  3. import org.springframework.boot.builder.SpringApplicationBuilder;
  4. import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
  5. @SpringBootApplication
  6. @EnableEurekaClient
  7. public class MessageApplication {
  8. public static void main(String[] args) {
  9. new SpringApplicationBuilder(MessageApplication.class).web(WebApplicationType.SERVLET).run(args);
  10. }
  11. }

启动服务

右键-->Run As --> Run Configurations...,分别使用 8771、8772、8773 三个端口各启动一个MessageApplication应用。

  1. -Dserver.port=8771
  2. -Dserver.port=8772
  3. -Dserver.port=8773

 启动完成后,浏览器输入:http://localhost:8761/ 效果图如下:

服务消费者

引入Ribbon依赖

新建一个 Maven 工程,取名 message-center 用来调用消息服务,在其 pom.xml 文件中引入依赖,内容如下:

  1. <parent>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-parent</artifactId>
  4. <version>2.0.6.RELEASE</version>
  5. </parent>
  6. <properties>
  7. <spring-cloud.version>Finchley.SR2</spring-cloud.version>
  8. </properties>
  9. <dependencies>
  10. <dependency>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-web</artifactId>
  13. </dependency>
  14. <!-- Eureka-Client 依赖 -->
  15. <dependency>
  16. <groupId>org.springframework.cloud</groupId>
  17. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  18. </dependency>
  19. <!-- Ribbon 依赖 -->
  20. <dependency>
  21. <groupId>org.springframework.cloud</groupId>
  22. <artifactId>spring-cloud-starter-netflix-ribbon</artifactId>
  23. </dependency>
  24. </dependencies>
  25. <dependencyManagement>
  26. <dependencies>
  27. <!-- SpringCloud 版本控制依赖 -->
  28. <dependency>
  29. <groupId>org.springframework.cloud</groupId>
  30. <artifactId>spring-cloud-dependencies</artifactId>
  31. <version>${spring-cloud.version}</version>
  32. <type>pom</type>
  33. <scope>import</scope>
  34. </dependency>
  35. </dependencies>
  36. </dependencyManagement>

添加配置

application.yml 添加配置如下: 

  1. server:
  2. port: 8781
  3. spring:
  4. application:
  5. name: message-center
  6. eureka:
  7. client:
  8. serviceUrl:
  9. defaultZone: http://localhost:8761/eureka/

使用Ribbon客户端

方式一:

在启动类中向Spring容器中注入一个带有@LoadBalanced注解的RestTemplate Bean。

  1. import org.springframework.boot.WebApplicationType;
  2. import org.springframework.boot.autoconfigure.SpringBootApplication;
  3. import org.springframework.boot.builder.SpringApplicationBuilder;
  4. import org.springframework.cloud.client.loadbalancer.LoadBalanced;
  5. import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
  6. import org.springframework.context.annotation.Bean;
  7. import org.springframework.web.client.RestTemplate;
  8. @SpringBootApplication
  9. @EnableEurekaClient
  10. public class MessageCenterApplication {
  11. @Bean
  12. @LoadBalanced
  13. public RestTemplate restTemplate() {
  14. return new RestTemplate();
  15. }
  16. public static void main(String[] args) {
  17. new SpringApplicationBuilder(MessageCenterApplication.class).web(WebApplicationType.SERVLET).run(args);
  18. }
  19. }

在调用那些需要做负载均衡的服务时,使用上面注入的RestTemplate Bean进行调用即可。

  1. import org.springframework.beans.factory.annotation.Autowired;
  2. import org.springframework.web.bind.annotation.GetMapping;
  3. import org.springframework.web.bind.annotation.RequestMapping;
  4. import org.springframework.web.bind.annotation.RestController;
  5. import org.springframework.web.client.RestTemplate;
  6. @RestController
  7. @RequestMapping("/api/v1/center")
  8. public class MessageCenterController {
  9. @Autowired
  10. private RestTemplate restTemplate;
  11. @GetMapping("/msg/get")
  12. public Object getMsg() {
  13. String msg = restTemplate.getForObject("http://message-service/api/v1/msg/get", String.class);
  14. return msg;
  15. }
  16. }

方式二:

直接使用 LoadBalancerClient 中的负载均衡策略获取一个可用的服务地址,然后再进行请求。

  1. import java.net.URI;
  2. import org.springframework.beans.factory.annotation.Autowired;
  3. import org.springframework.cloud.client.ServiceInstance;
  4. import org.springframework.cloud.client.loadbalancer.LoadBalancerClient;
  5. import org.springframework.web.bind.annotation.GetMapping;
  6. import org.springframework.web.bind.annotation.RequestMapping;
  7. import org.springframework.web.bind.annotation.RestController;
  8. import org.springframework.web.client.RestTemplate;
  9. @RestController
  10. @RequestMapping("/api/v1/center")
  11. public class MessageCenterController {
  12. @Autowired
  13. private LoadBalancerClient loadBalancer;
  14. @GetMapping("/msg/get")
  15. public Object getMsg() {
  16. ServiceInstance instance = loadBalancer.choose("message-service");
  17. URI url = URI.create(String.format("http://%s:%s/api/v1/msg/get", instance.getHost(), instance.getPort()));
  18. RestTemplate restTemplate = new RestTemplate();
  19. String msg = restTemplate.getForObject(url, String.class);
  20. return msg;
  21. }
  22. }

待应用启动之后,连续三次请求地址 http://localhost:8781/api/v1/center/msg/get ,返回的结果如图所示:

 

 

切换Ribbon负载均衡策略

Ribbon本身提供了下面几种负载均衡策略:

RoundRobinRule: 轮询策略,Ribbon以轮询的方式选择服务器,这个是默认值。所以示例中所启动的两个服务会被循环访问;

RandomRule: 随机策略,也就是说Ribbon会随机从服务器列表中选择一个进行访问;

BestAvailableRule: 最大可用策略,即先过滤出故障服务器后,选择一个当前并发请求数最小的;

WeightedResponseTimeRule: 带有加权的轮询策略,对各个服务器响应时间进行加权处理,然后在采用轮询的方式来获取相应的服务器;

AvailabilityFilteringRule: 可用过滤策略,先过滤出故障的或并发请求大于阈值的一部分服务实例,然后再以线性轮询的方式从过滤后的实例清单中选出一个;

ZoneAvoidanceRule: 区域感知策略,先使用主过滤条件(区域负载器,选择最优区域)对所有实例过滤并返回过滤后的实例清单,依次使用次过滤条件列表中的过滤条件对主过滤条件的结果进行过滤,判断最小过滤数(默认1)和最小过滤百分比(默认0),最后对满足条件的服务器则使用RoundRobinRule(轮询方式)选择一个服务器实例。

我们可以将上例中的message-service的负载均衡策略设置为随机访问RandomRule,application.yml配置如下:

  1. message-service:
  2. ribbon:
  3. NFLoadBalancerRuleClassName: com.netflix.loadbalancer.RandomRule

当然,我们也可以通过继承ClientConfigEnabledRoundRobinRule,来实现自己的负载均衡策略。

自定义Ribbon客户端

您可以使用外部属性按照 <clientName>.<nameSpace>.<propertyName>=<value> 的格式对Ribbon客户端的某些特性进行配置,这与使用Netflix API类似。当然,你也可以在Springboot配置文件中进行配置。所有的配置项均以静态字段的形式定义在 CommonClientConfigKey 类(Ribbon核心的一部分)中。

SpringCloud还允许你在RibbonClientConfiguration的基础之上使用@RibbonClient声明一些额外配置,从而实现对Ribbon客户端的完全控制,如下例所示:

  1. import org.springframework.cloud.netflix.ribbon.RibbonClient;
  2. import org.springframework.cloud.netflix.ribbon.ZonePreferenceServerListFilter;
  3. import org.springframework.context.annotation.Bean;
  4. import org.springframework.context.annotation.Configuration;
  5. import com.netflix.loadbalancer.IPing;
  6. import com.netflix.loadbalancer.PingUrl;
  7. import com.pengjunlee.TestConfiguration.MessageConfiguration;
  8. @Configuration
  9. @RibbonClient(name = "message-service", configuration = MessageConfiguration.class)
  10. public class TestConfiguration {
  11. @Configuration
  12. protected static class MessageConfiguration {
  13. @Bean
  14. public ZonePreferenceServerListFilter serverListFilter() {
  15. ZonePreferenceServerListFilter filter = new ZonePreferenceServerListFilter();
  16. filter.setZone("myTestZone");
  17. return filter;
  18. }
  19. @Bean
  20. public IPing ribbonPing() {
  21. return new PingUrl();
  22. }
  23. }
  24. }

在这个例子中,这个Ribbon客户端将由RibbonClientConfiguration和MessageConfiguration中的组件一起组成(后者会覆盖前者的配置)。

注意:本例中,MessageConfiguration必须用@Configuration注解标注,但是它不应该被包含在Spring的组件扫描路径之中,否则它将被所有的Ribbon客户端共享。如果你使用@ComponentScan(或者@SpringBootApplication),那么你应该采取措施来避免它被包含到扫描范围之中。

下表列出了 Spring Cloud Netflix 缺省为Ribbon提供的所有 Bean:

Bean Type

Bean Name

Class Name

IClientConfig

ribbonClientConfig

DefaultClientConfigImpl

IRule

ribbonRule

ZoneAvoidanceRule

IPing

ribbonPing

DummyPing

ServerList<Server>

ribbonServerList

ConfigurationBasedServerList

ServerListFilter<Server>

ribbonServerListFilter

ZonePreferenceServerListFilter

ILoadBalancer

ribbonLoadBalancer

ZoneAwareLoadBalancer

ServerListUpdater

ribbonServerListUpdater

PollingServerListUpdater

创建这些类型的一个Bean 并将它写到 @RibbonClient 声明的配置中,这样你就能够对这些Bean中的每一个进行重写。例如上面的 MessageConfiguration 中利用PingUrl替代了NoOpPing并提供了一个自定义的serverListFilter。

自定义Ribbon客户端的默认配置

通过@RibbonClients注解可以为所有的Ribbon客户端提供一个默认的配置。例如

  1. import org.springframework.cloud.netflix.ribbon.RibbonClients;
  2. import org.springframework.context.annotation.Bean;
  3. import org.springframework.context.annotation.Configuration;
  4. import com.netflix.client.config.IClientConfig;
  5. import com.netflix.loadbalancer.BestAvailableRule;
  6. import com.netflix.loadbalancer.ConfigurationBasedServerList;
  7. import com.netflix.loadbalancer.IPing;
  8. import com.netflix.loadbalancer.IRule;
  9. import com.netflix.loadbalancer.PingUrl;
  10. import com.netflix.loadbalancer.Server;
  11. import com.netflix.loadbalancer.ServerList;
  12. import com.netflix.loadbalancer.ServerListSubsetFilter;
  13. @RibbonClients(defaultConfiguration = DefaultRibbonConfig.class)
  14. public class RibbonClientDefaultConfigurationTestsConfig {
  15. public static class BazServiceList extends ConfigurationBasedServerList {
  16. public BazServiceList(IClientConfig config) {
  17. super.initWithNiwsConfig(config);
  18. }
  19. }
  20. }
  21. @Configuration
  22. class DefaultRibbonConfig {
  23. @Bean
  24. public IRule ribbonRule() {
  25. return new BestAvailableRule();
  26. }
  27. @Bean
  28. public IPing ribbonPing() {
  29. return new PingUrl();
  30. }
  31. @Bean
  32. public ServerList<Server> ribbonServerList(IClientConfig config) {
  33. return new RibbonClientDefaultConfigurationTestsConfig.BazServiceList(config);
  34. }
  35. @Bean
  36. public ServerListSubsetFilter serverListFilter() {
  37. ServerListSubsetFilter filter = new ServerListSubsetFilter();
  38. return filter;
  39. }
  40. }

通过配置属性自定义Ribbon客户端

Spring Cloud Netflix 从1.2.0版本开始支持通过配置属性自定义Ribbon客户端,这可以让你在应用启动时根据不同的环境来改变Ribbon的行为。

支持配置的属性列表如下:

  1. <clientName>.ribbon.NFLoadBalancerClassName: 需实现 ILoadBalancer
  2. <clientName>.ribbon.NFLoadBalancerRuleClassName: 需实现 IRule
  3. <clientName>.ribbon.NFLoadBalancerPingClassName: 需实现 IPing
  4. <clientName>.ribbon.NIWSServerListClassName: 需实现 ServerList
  5. <clientName>.ribbon.NIWSServerListFilterClassName: 需实现 ServerListFilter

 注意:通过配置属性定义的类与上述@RibbonClient配置类中定义的Bean以及Spring Cloud Netflix

提供的缺省配置相比具有更高的优先级。

例如对 message-service 服务的 IRule 属性进行修改,可以在application.yml中进行如下配置:

  1. message-service:
  2. ribbon:
  3. NIWSServerListClassName: com.netflix.loadbalancer.ConfigurationBasedServerList
  4. NFLoadBalancerRuleClassName: com.netflix.loadbalancer.WeightedResponseTimeRule

脱离Eureka使用Ribbon

Eureka提供了一种抽象的发现远程服务的便捷的方式,这样你就不必在客户端中硬编码服务地址列表,但是如果你不用Eureka,也可以继续使用Ribbon和Feign。假设在不使用Eureka,你用@RibbonClient声明了一个"stores"服务,这个时候Ribbon Client 默认会引用一个配置好的服务列表,你可以在application.yml中对它进行配置:

  1. stores:
  2. ribbon:
  3. listOfServers: example.com,google.com

在Ribbon中禁用Eureka

通过将 ribbon.eureka.enabled 属性设置为 false 可以在Ribbon中禁用Eureka。

  1. ribbon:
  2. eureka:
  3. enabled: false

Ribbon缓存配置

对于每一个Ribbon客户端,Spring Cloud都会维护一个与其相应的应用上下文,这个应用上下文会在相应服务第一次被请求时进行懒加载。你可以使用饥饿加载来取代懒加载,通过指定那些需要饥饿加载Ribbon客户端名称,在应用启动时就对其应用上下文进行加载。

  1. ribbon:
  2. eager-load:
  3. enabled: true
  4. clients: client1, client2, client3

参考文章

https://www.jianshu.com/p/d32ae141f680

https://blog.csdn.net/u014401141/article/details/78676296

https://cloud.spring.io/spring-cloud-static/spring-cloud-netflix/2.0.2.RELEASE/single/spring-cloud-netflix.html#spring-cloud-ribbon 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/84077
推荐阅读
相关标签
  

闽ICP备14008679号