这篇文章主要介绍了SpringCloudHyxtrix的基本使用,它是SpringCloud中集成的一个组件,在整个生态中主要为我们提供服务隔离,服务熔断,服务降级功能,本文给大家介绍的非常详细,需要的朋友可以参考下
一、简介
当微服务中的某个子服务,发生异常服务器宕机,其他服务在进行时不能正常访问而一直占用资源导致正常的服务也发生资源不能释放而崩溃,这时为了不造成整个微服务群瘫痪,进行的保护机制 就叫做熔断,是一种降级策略
熔断的目的:保护微服务集群
二、作用
- 对第三方访问的延迟和故障进行保护和控制
- 防止复杂分布式系统中的雪崩效应(级联故障)
- 快速失败,快速恢复
- 回退,尽可能优雅的降级
- 启用近实时监控、报警和操作控制
三、核心概念
3.1 熔断目的
应对雪崩效应,快速失败,快速恢复
3.2 降级目的
保证整体系统的高可用性
四、实例
4.1 基于Hystrix
pom.xml
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
</dependency>
application
@EnableHystrix // 开启熔断
@SpringBootApplication
public class HystrixApplication {
public static void main(String[] args) {
SpringApplication.run(HystrixApplication.class, args);
}
}
4.1.1 熔断触发降级
@RestController
@RequestMapping("/hystrix")
public class HystrixController {
@Autowired
private RestTemplate restTemplate;
/**
* @param num 参数
* @return 字符串
*/
@HystrixCommand(
commandProperties = {
@HystrixProperty(name = "circuitBreaker.enabled", value = "true"),
@HystrixProperty(name = "circuitBreaker.requestVolumeThreshold", value = "5"), // 默认20, 最小产生5次请求
@HystrixProperty(name = "circuitBreaker.sleepWindowInMilliseconds", value = "5000"), // 熔断时间, 该时间内快速失败
@HystrixProperty(name = "circuitBreaker.errorThresholdPercentage", value = "50"), // 10s内失败率达到50%触发熔断
}, // 10s 内最少 5 个请求, 如果失败率大于 50% 则触发熔断
fallbackMethod = "fallback"
) // 服务调用失败时,触发熔断进行降级
@GetMapping("/test")
public String test(@RequestParam Integer num) {
if (num % 2 == 0) {
return "访问正常";
}
List<?> list = restTemplate.getForObject("http://localhost:7070/product/list", List.class);
assert list != null;
return list.toString();
}
/**
* 熔断时触发降级
*
* @param num 参数
* @return 字符串
*/
private String fallback(Integer num) {
// 降级操作
return "系统繁忙";
}
}
4.1.2 超时触发降级
@RestController
@RequestMapping("/hystrix")
public class HystrixController {
@Autowired
private RestTemplate restTemplate;
@HystrixCommand(
commandProperties = {
@HystrixProperty(name = "execution.isolation.thread.timeoutInMilliseconds",value = "500")
},
fallbackMethod = "timeout"
)
@GetMapping("/timeout")
public String timeoutTest(){
return restTemplate.getForObject("http://localhost:7070/product/list", String.class);
}
/**
* 超时时触发降级
*
* @return 字符串
*/
private String timeout() {
// 降级操作
return "请求超时";
}
}
4.1.3 资源隔离触发降级
平台隔离、业务隔离、部署隔离
线程池隔离、信号量隔离
4.2 基于OpenFeign pom.xml
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-openfeign</artifactId>
</dependency>
application
@SpringBootApplication
@ComponentScan(basePackages = {
"com.study.provider.service", // feign 包目录
"com.study.hystrix" // 当前模块启动目录
})
@EnableFeignClients(basePackages = "com.study.provider.service") // feign 目录
public class HystrixApplication {
public static void main(String[] args) {
SpringApplication.run(HystrixApplication.class, args);
}
}
HystrixFeignController
@RestController
@RequestMapping("/hystrixFeign")
public class HystrixFeignController {
@Qualifier("com.study.provider.service.ProductionService")
@Autowired
ProductionService productService; // feign Client
@GetMapping("test")
public String test(){
return productService.getProduction(1).toString(); // 远程调用
}
}
feign Client
@FeignClient(value = "provider", fallback = ProductionFallback.class) // fallback 用于熔断
public interface ProductionService {
@RequestMapping("/product/getProduction")
Object getProduction(@RequestParam Integer id);
}
ProductionFallback
@Component
public class ProductionFallback implements ProductionService {
@Override
public Object getProduction(Integer id) {
return "请求失败";
}
@Override
public Map createProduction(Object production) {
return new HashMap<>();
}
@Override
public Object selectByProduct(Object product) {
return "请求失败";
}
}
到此这篇关于SpringCloud微服务熔断器使用详解的文章就介绍到这了,更多相关SpringCloud熔断器内容请搜索编程学习网以前的文章希望大家以后多多支持编程学习网!
沃梦达教程
本文标题为:SpringCloud微服务熔断器使用详解
基础教程推荐
猜你喜欢
- Java文件管理操作的知识点整理 2023-05-19
- Java实现线程插队的示例代码 2022-09-03
- Java实现查找文件和替换文件内容 2023-04-06
- java基础知识之FileInputStream流的使用 2023-08-11
- ConditionalOnProperty配置swagger不生效问题及解决 2023-01-02
- Java并发编程进阶之线程控制篇 2023-03-07
- springboot自定义starter方法及注解实例 2023-03-31
- java实现多人聊天系统 2023-05-19
- JDK数组阻塞队列源码深入分析总结 2023-04-18
- Java数据结构之对象比较详解 2023-03-07