spring cloud zuul 配置请求并发数

Zuul默认集成hystrix, 同时,和hystrix一样采用线程隔离技术 
zuul默认使用:信号量(semaphore) 
hystrix默认使用:线程池 (thread)

配置信号量

属性描述
zuul.ribbon-isolation-strategysemaphore配置隔离策略为信号量
zuul.semaphore.max-semaphores1000配置信号量大小
hystrix.command.default.execution.isolation.strategysemaphore配置断路器中的隔离策略为信号量
hystrix.command.default.execution.isolation.semaphore.maxConcurrentRequests1000配置断路器中的信号量大小

没有测试过,只配置zuul是否生效, 或者2个配置不同,哪一个配置生效

    原文作者:Spring Cloud
    原文地址: https://blog.csdn.net/u012843873/article/details/82796586
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞