这是因为http 2.0 是异步的操作 而 Hystrix的处理只有10 所有会保报错
clipboard.png

配置查看 这里https://github.com/Netflix/Hy...

hystrix:
  command:
    default:
      execution:
        isolation:
          strategy: SEMAPHORE
          thread:
            timeoutInMilliseconds:  120000
          semaphore:
            maxConcurrentRequests: 1000
      circuitBreaker:
        sleepWindowInMilliseconds:  5000

这样配置就可以了


exception
69 声望1 粉丝