没有合适的资源?快使用搜索试试~ 我知道了~
资源推荐
资源详情
资源评论
一、hystrix 熔断器的使用
1. 添加依赖
1. <dependency>
2. <groupId>org.springframework.cloud</groupId>
3. <artifactId>spring-cloud-starter-openfeign</artifactId>
4. </dependency>
5. <dependency>
6. <groupId>org.springframework.cloud</groupId>
7. <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
8. </dependency>
2. yml 配置
1. #设置 Feign 的配置
2. feign:
3. hystrix:
4. # 开启 Hystrix,否则@FeignClient 中的 fallbackFactory 配置不起作用。
5. enabled: true
6.
7. #-----------------Hystrix 配置-----------------------
8. hystrix:
9. command:
10. default:
11. metrics:
12. rollingStats:
13. #设置滚动时间窗为 5 秒
14. timeInMilliseconds: 5000
15. execution:
16. isolation:
17. thread:
18. # 设置命令执行的默认超时时间,单位毫秒
19. timeoutInMilliseconds: 10000
20. timeout:
21. # 是否启用超时,如果不启用上面的值也不用配置。
22. enabled: true
23. circuitBreaker:
24. # 是否启用断路器
25. enabled: true
26. # 单位时间内请求的总量需要达到阈值
27. requestVolumeThreshold: 2
28. # 错误率阈值,当错误率超过这个值,断路器打开
29. errorThresholdPercentage: 50
30. # 断路器打开后,多久后尝试恢复服务
资源评论
张孝帅的csdn
- 粉丝: 57
- 资源: 4
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功