上图就是结果树
上图就是聚合报告
这是我的Hystrix配置
@HystrixCommand(
commandKey = “createOrder”,
commandProperties = {
@HystrixProperty(name = “execution.timeout.enabled”,value = “true”),
@HystrixProperty(name = “execution.isolation.thread.timeoutInMilliseconds”,value = “30000”),
@HystrixProperty(
name=“execution.isolation.strategy”,
value = “THREAD”
),},
threadPoolKey = “createOrderThreadPool”,
threadPoolProperties = {
@HystrixProperty(name=“coreSize”,value = “10”),
@HystrixProperty(name=“maxQueueSize”,value = “20000”),
@HystrixProperty(name=“queueSizeRejectionThreshold”,value = “30”),
},
fallbackMethod = “createOrderfallbackMethod4Thread”
)
10.1k 15
10.1k 15
1.2k 11
1.1k 7
1.1k 6