@HystrixCommand 注解是hystrix框架中非常重要的一个注解。作用于方法上,为每个方法开启熔断、降级。
全局设置熔断的方式:在类上面添加@DefaultProperties(defaultFallback = “default_global”) defaultFallback的意思是,添加了@HystrixCommand的方法出发降级都会调用default_global方法。
hystrix 框架默认是开启请求超时时间的,如果不进行配置采用默认配置的话,超时时间为1秒钟。
全局配置的方式:
#统计的时间窗口,默认为10s,一般不需要更改
#hystrix.command.default.metrics.rollingStats.timeInMilliseconds: 10000
#是否开启降级
#hystrix.command.default.fallback.enabled: true
#是否开启断路器
#hystrix.command.default.circuitBreaker.enabled: true
#失败率达到多少后跳闸,在统计窗口期中,请求数大于阈值并且失败率达到60,则触发断路,断路器开启,链路中断
#hystrix.command.default.circuitBreaker.errorThresholdPercentage: 60
#请求最小触发次数
#hystrix.command.default.circuitBreaker.requestVolumeThreshold: 3
#断路后休眠状态的时长,默认为5s,断路8s后断路器进入半开状态
#hystrix.command.default.circuitBreaker.sleepWindowInMilliseconds: 10000
#取消是否中断
#hystrix.command.default.execution.isolation.thread.interruptOnFutureCancel: true
#超时是否中断
#hystrix.command.default.execution.isolation.thread.interruptOnTimeout: true
#超时阈值,单位是毫秒
#hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds: 4000
hystrix全局默认配置
最新推荐文章于 2024-09-29 15:07:31 发布