xiangyanggong opened a new issue #2347: URL: https://github.com/apache/servicecomb-java-chassis/issues/2347
场景:provider 配置了 bizkeeper 1. bizkeeper使用了hystrix实现隔离、熔断等功能 2. 隔离机制使用的是“信号量”,默认为10; 3. 隔离/熔断的粒度**是接口级别,而非服务级别**。也就是说,服务M中包含接口1和接口2,接口1的信号量为10,接口2的信号量也为10,对于接口1和接口2的熔断统计数据(失败率)也是各计算各的,两者不耦合。 即接口1被隔离/熔断后,接口2依然可以提供服务; 4. 隔离引起的失败(590)会被纳入对该接口的熔断数据(失败率)统计 我想确认的是第3、4点是否理解正确?据我现在对hystrix的了解程度,这些依赖于GroupKey和CommandKey,而bizkeeper中的这些key的生成规则为 [type].[serviceName].[endpoint].[operationId],所以我理解是接口级别,不知道对不对? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
