Spring Cloud Hystrix 线程池隔离参数配置

Posted 抓手

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Cloud Hystrix 线程池隔离参数配置相关的知识,希望对你有一定的参考价值。

hystrix:
  command:
    default:
      execution:
        isolation:
          thread:
            # 请求超时时间
            timeoutInMilliseconds: 30000
      circuitBreaker:
        # 断路器请求量阈值,在时间窗口内达到阈值进行短路,默认20个
        requestVolumeThreshold: 20
        # 断路器等待窗口时间,断路器等待多长时间后尝试恢复请求,默认5s
        sleepWindowInMilliseconds: 5000
        # 断路器错误百分比阈值,当达到阈值后,开始短路,默认50%
        errorThresholdPercentage: 50
      fallback:
        isolation:
          semaphore:
            # 最大并发降级请求处理上限,默认10
            maxConcurrentRequests: 10
  threadpool:
    default:
      # 核心线程数,默认10
      coreSize: 10
      # 最大线程数
      maximumSize: 10
      # 是否允许maximumSize生效,默认false只有coreSize会生效
      allowMaximumSizeToDivergeFromCoreSize: true
      # BlockingQueue的最大队列数,默认值-1代表使用SynchronousQueue队列
      maxQueueSize: -1
      # 即便没达到maxQueueSize阈值,但达到queueSizeRejectionThreshold阈值,请求也会被拒绝,默认值5
      queueSizeRejectionThreshold: 5

以上是关于Spring Cloud Hystrix 线程池隔离参数配置的主要内容,如果未能解决你的问题,请参考以下文章

Spring Cloud Hystrix 请求熔断与服务降级

spring boot 2.0.3+spring cloud (Finchley)熔断器Hystrix

Spring Cloud Hystrix理解与实践:搭建简单监控集群

Spring cloud Hystrix

Spring Cloud Hystrix(熔断器简介)

微服务架构Spring Cloud之Hystrix