• Hystrix应用


    1、Hystrix熔断应用

    目的:简历微服务长时间没有响应,服务消费者—>自动投递微服务快速失败给用户提示

    1.1、服务消费者工程(自动投递微服务)中引入Hystrix依赖坐标(也可以添加在父工程中) 

    1. <dependency>
    2. <groupId>org.springframework.cloudgroupId>
    3. <artifactId>spring-cloud-starter-netflix-hystrixartifactId>
    4. dependency>

    1.2、服务消费者工程(自动投递微服务)的启动类中添加熔断器开启注解@EnableCircuitBreaker

    1. package com.lagou.edu;
    2. import org.springframework.boot.SpringApplication;
    3. import org.springframework.boot.autoconfigure.SpringBootApplication;
    4. import org.springframework.cloud.client.SpringCloudApplication;
    5. import org.springframework.cloud.client.circuitbreaker.EnableCircuitBreaker;
    6. import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
    7. import org.springframework.cloud.client.loadbalancer.LoadBalanced;
    8. import org.springframework.cloud.netflix.hystrix.EnableHystrix;
    9. import org.springframework.context.annotation.Bean;
    10. import org.springframework.web.client.RestTemplate;
    11. @SpringBootApplication
    12. @EnableDiscoveryClient
    13. // @EnableHystrix // 打开Hystrix功能
    14. @EnableCircuitBreaker // 开启熔断器功能(这个与@EnableHystrix的功能相同,只不过它是通用注解)
    15. // @SpringCloudApplication // 综合性注解 @SpringCloudApplication = @SpringBootApplication + @EnableDiscoveryClient + @EnableCircuitBreaker
    16. public class AutoDeliverApplication {
    17. public static void main(String[] args) {
    18. SpringApplication.run(AutoDeliverApplication.class, args);
    19. }
    20. // 使用RestTemplate模板对象远程调用
    21. @Bean
    22. @LoadBalanced
    23. public RestTemplate gerRestTemplate() {
    24. return new RestTemplate();
    25. }
    26. }

    1.3、定义服务降级处理方法,并在业务方法上使用@HystrixCommand的fallbackMethod属性关联到服务降级处理方法

    1. @RestController
    2. @RequestMapping("/autodeliver")
    3. public class AutoDeliverController {
    4. @Autowired
    5. private RestTemplate restTemplate;
    6. /**
    7. * 模拟处理超时,调用方法添加Hystrix控制
    8. *
    9. * @param userId
    10. * @return
    11. */
    12. // 使用HystrixCommand注解进行熔断控制
    13. @HystrixCommand(
    14. // 线程池标识,要保持唯一,不唯一的话就共用了
    15. threadPoolKey = "findResumeOpenStateTimeout",
    16. // 线程池属性细节配置
    17. threadPoolProperties = {
    18. @HystrixProperty(name = "coreSize", value = "1"), // 线程数
    19. @HystrixProperty(name="maxQueueSize",value="20") // 等待队列长度
    20. },
    21. // commandProperties 熔断的一些细节属性配置
    22. commandProperties = {
    23. // 每一个属性都是一个HystrixProperty
    24. @HystrixProperty(name = "execution.isolation.thread.timeoutInMilliseconds", value = "2000")
    25. },
    26. fallbackMethod = "myFallback" // 回退方法
    27. )
    28. @GetMapping("/checkStateTimeout/{userId}")
    29. public Integer findResumeOpenStateTimeout(@PathVariable Long userId) {
    30. // 使用Ribbon不需要我们自己获取服务实例,然后选择一个那种方式去访问了(自己负载均衡)
    31. String url = "http://lagou-service-resume/resume/openstate/" + userId; // 指定服务名
    32. Integer forObject = restTemplate.getForObject(url, Integer.class);
    33. return forObject;
    34. }
    35. /*
    36. * 定义回退⽅法,返回预设默认值
    37. * 注意:该⽅法形参和返回值与原始⽅法保持一致
    38. */
    39. public Integer myFallback(Long userId) {
    40. return -1; // 兜底数据
    41. }
    42. }

    1.4、服务提供者端(简历微服务)模拟请求超时(线程休眠10s),只修改8080实例,8081不修改,对比观察

    1. package com.lagou.edu.controller;
    2. import com.lagou.edu.service.ResumeService;
    3. import org.springframework.beans.factory.annotation.Autowired;
    4. import org.springframework.beans.factory.annotation.Value;
    5. import org.springframework.web.bind.annotation.GetMapping;
    6. import org.springframework.web.bind.annotation.PathVariable;
    7. import org.springframework.web.bind.annotation.RequestMapping;
    8. import org.springframework.web.bind.annotation.RestController;
    9. @RestController
    10. @RequestMapping("/resume")
    11. public class ResumeController {
    12. @Autowired
    13. private ResumeService resumeService;
    14. @Value("${server.port}")
    15. private Integer port;
    16. @GetMapping("/openstate/{userId}")
    17. public Integer findDefaultResumeState(@PathVariable Long userId) {
    18. // 模拟处理超时
    19. try {
    20. Thread.sleep(10000);
    21. } catch (InterruptedException e) {
    22. throw new RuntimeException(e);
    23. }
    24. // return resumeService.findDefaultResumeByUserId(userId).getIsOpenResume();
    25. return port;
    26. }
    27. }

            因为我们在消费方,也就是简历投递微服务中,Hystrix中设置的超时时间是2s,此时简历微服务中的我们使用线程休眠了10s,这时候调用服务,就会触发熔断机制,如果我们没有设置fallback回调方法,这个时候页面显示的就是一系列错误提示信息。

            而如果我们设置了fallback回调方法,这个时候当发生熔断后,会调用我们预先设置方法,然后展示到页面,避免了错误信息在信息在页面的展示,从而影响了用户的使用体验。 

            因为我们已经使用了Ribbon负载(轮询),所以我们在请求的时候,一次熔断降级,一次正常返回。

    注意: 

    •  降级(兜底)方法必须和被降级方法相同的方法签名(相同参数列表、相同返回值)
    • 可以在类上使用@DefaultProperties注解统一指定整个类中共用的降级(兜底)方法
      1. @DefaultProperties(// 线程池标识,要保持唯一,不唯一的话就共用了
      2. threadPoolKey = "findResumeOpenStateTimeout",
      3. // 线程池属性细节配置
      4. threadPoolProperties = {
      5. @HystrixProperty(name = "coreSize", value = "1"), // 线程数
      6. @HystrixProperty(name="maxQueueSize",value="20") // 等待队列长度
      7. },
      8. // commandProperties 熔断的一些细节属性配置
      9. commandProperties = {
      10. // 每一个属性都是一个HystrixProperty
      11. @HystrixProperty(name = "execution.isolation.thread.timeoutInMilliseconds", value = "2000")
      12. })

    2、Hystrix舱壁模式(线程池隔离策略)

            如果不进行任何设置,所有熔断方法使用一个Hystrix线程池(10个线程),那么这样的话会导致问题,这个问题并不是扇出链路微服务不可用导致的,而是我们的线程机制导致的,如果方法A的请求把10个线程都用了,方法2请求处理的时候压根都没法去访问B,因为没有线程可用,并不是B服务不可用。 

            为了避免问题服务请求过多导致正常服务无法访问,Hystrix 不是采用增加线程数,而是单独的为每一个控制方法创建一个线程池的方式,这种模式叫做“舱壁模式",也是线程隔离的手段。 

    我们可以使用一些手段查看线程情况 

    发起请求,可以使用PostMan模拟批量请求 

    在之前的代码中我们也看到了,如何设置舱壁模式

    1. @RestController
    2. @RequestMapping("/autodeliver")
    3. public class AutoDeliverController {
    4. @Autowired
    5. private RestTemplate restTemplate;
    6. /**
    7. * 使用Ribbon负载均衡
    8. *
    9. * @param userId
    10. * @return
    11. */
    12. @GetMapping("/checkState/{userId}")
    13. public Integer findResumeOpenState(@PathVariable Long userId) {
    14. // 使用Ribbon不需要我们自己获取服务实例,然后选择一个那种方式去访问了(自己负载均衡)
    15. String url = "http://lagou-service-resume/resume/openstate/" + userId; // 指定服务名
    16. Integer forObject = restTemplate.getForObject(url, Integer.class);
    17. return forObject;
    18. }
    19. /**
    20. * 模拟处理超时,调用方法添加Hystrix控制
    21. *
    22. * @param userId
    23. * @return
    24. */
    25. // 使用HystrixCommand注解进行熔断控制
    26. @HystrixCommand(
    27. // 线程池标识,要保持唯一,不唯一的话就共用了
    28. threadPoolKey = "findResumeOpenStateTimeout",
    29. // 线程池属性细节配置
    30. threadPoolProperties = {
    31. @HystrixProperty(name = "coreSize", value = "1"), // 线程数
    32. @HystrixProperty(name="maxQueueSize",value="20") // 等待队列长度
    33. },
    34. // commandProperties 熔断的一些细节属性配置
    35. commandProperties = {
    36. // 每一个属性都是一个HystrixProperty
    37. @HystrixProperty(name = "execution.isolation.thread.timeoutInMilliseconds", value = "2000")
    38. }
    39. )
    40. @GetMapping("/checkStateTimeout/{userId}")
    41. public Integer findResumeOpenStateTimeout(@PathVariable Long userId) {
    42. // 使用Ribbon不需要我们自己获取服务实例,然后选择一个那种方式去访问了(自己负载均衡)
    43. String url = "http://lagou-service-resume/resume/openstate/" + userId; // 指定服务名
    44. Integer forObject = restTemplate.getForObject(url, Integer.class);
    45. return forObject;
    46. }
    47. // 设置触发熔断后调用的fallback回调方法
    48. @GetMapping("/checkStateTimeoutFallback/{userId}")
    49. @HystrixCommand(
    50. // 线程池标识,要保持唯一,不唯一的话就共用了
    51. threadPoolKey = "findResumeOpenStateTimeoutFallback",
    52. // 线程池属性细节配置
    53. threadPoolProperties = {
    54. @HystrixProperty(name = "coreSize", value = "2"), // 线程数
    55. @HystrixProperty(name="maxQueueSize",value="20") // 等待队列长度
    56. },
    57. // commandProperties 熔断的一些细节属性配置
    58. commandProperties = {
    59. // 每一个属性都是一个HystrixProperty
    60. @HystrixProperty(name = "execution.isolation.thread.timeoutInMilliseconds", value = "2000")
    61. },
    62. fallbackMethod = "myFallback" // 回退方法
    63. )
    64. public Integer findResumeOpenStateTimeoutFallback(@PathVariable Long userId) {
    65. // 使用Ribbon不需要我们自己获取服务实例,然后选择一个那种方式去访问了(自己负载均衡)
    66. String url = "http://lagou-service-resume/resume/openstate/" + userId; // 指定服务名
    67. Integer forObject = restTemplate.getForObject(url, Integer.class);
    68. return forObject;
    69. }
    70. /*
    71. * 定义回退⽅法,返回预设默认值
    72. * 注意:该⽅法形参和返回值与原始⽅法保持一致
    73. */
    74. public Integer myFallback(Long userId) {
    75. return -1; // 兜底数据
    76. }
    77. /**
    78. * 1)服务提供者处理超时,熔断,返回错误信息
    79. * 2)有可能服务提供者出现异常直接抛出异常信息
    80. * 以上信息,都会返回到消费者这⾥,很多时候消费者服务不希望把收到异常/错误信息再抛到它的上游去
    81. * ⽤户微服务 — 注册微服务 — 优惠券微服务
    82. * 1、登记注册
    83. * 2、分发优惠券(并不是核⼼步骤),这⾥如果调⽤优惠券微服务返回了异常信息或者是熔断后的错误信息,这些信息如果抛给⽤户很不友好
    84. * 此时,我们可以返回⼀个兜底数据,预设的默认值(服务降级)
    85. */
    86. }

    通过jstack命令查看线程情况,和我们程序设置相符合

  • 相关阅读:
    一周技术学习笔记(第75期)-通过代码的认知成本可以衡量复杂度吗
    如何统计前端项目有多少行代码
    状态估计和KalmanFilter公式的推导与应用
    计算机存储器与存储结构
    租赁小程序|租赁系统一种新型的商业模式
    软件项目管理 9.1.软件配置管理基本概念
    调用Visual Studio的cl.exe编译C/C++程序
    pycharm 设置多级跳转SSH
    【洛谷 P1115】最大子段和 题解(贪心算法)
    JavaEE-博客系统3(功能设计)
  • 原文地址:https://blog.csdn.net/weixin_52851967/article/details/126452216