You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicecomb.apache.org by GitBox <gi...@apache.org> on 2021/03/03 07:32:09 UTC

[GitHub] [servicecomb-java-chassis] ai930 opened a new issue #2271: 触发隔离或者重试等事件,有优化自定义事件监听吗?达到监控告警目的

ai930 opened a new issue #2271:
URL: https://github.com/apache/servicecomb-java-chassis/issues/2271


   


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [servicecomb-java-chassis] ai930 commented on issue #2271: 触发隔离或者重试等事件,有优化自定义事件监听吗?达到监控告警目的

Posted by GitBox <gi...@apache.org>.
ai930 commented on issue #2271:
URL: https://github.com/apache/servicecomb-java-chassis/issues/2271#issuecomment-815402708


   我使用了这些功能,发现有个问题,你们的控制的纬度只在服务应用纬度,不能控制点具体服务应用里面的某个服务或者服务方法。。。


-- 
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:
users@infra.apache.org



[GitHub] [servicecomb-java-chassis] liubao68 commented on issue #2271: 触发隔离或者重试等事件,有优化自定义事件监听吗?达到监控告警目的

Posted by GitBox <gi...@apache.org>.
liubao68 commented on issue #2271:
URL: https://github.com/apache/servicecomb-java-chassis/issues/2271#issuecomment-816328725


   不是很理解这个说明。建议可以描述下具体使用场景和解决的问题,可能会有更好的建议。 


-- 
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:
users@infra.apache.org



[GitHub] [servicecomb-java-chassis] liubao68 commented on issue #2271: 触发隔离或者重试等事件,有优化自定义事件监听吗?达到监控告警目的

Posted by GitBox <gi...@apache.org>.
liubao68 commented on issue #2271:
URL: https://github.com/apache/servicecomb-java-chassis/issues/2271#issuecomment-822895502


   这里有关于[基于Hystrix治理](http://servicecomb.gitee.io/servicecomb-java-chassis-doc/java-chassis/zh_CN/references-handlers/bizkeeper/)的说明。 
   
   这个实际产品用的比较少,确实不怎么好用。 建议使用实例隔离即可,参考: http://servicecomb.gitee.io/servicecomb-java-chassis-doc/java-chassis/zh_CN/references-handlers/loadbalance/


-- 
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:
users@infra.apache.org



[GitHub] [servicecomb-java-chassis] liubao68 commented on issue #2271: 触发隔离或者重试等事件,有优化自定义事件监听吗?达到监控告警目的

Posted by GitBox <gi...@apache.org>.
liubao68 commented on issue #2271:
URL: https://github.com/apache/servicecomb-java-chassis/issues/2271#issuecomment-829722865


   实例隔离是按照进程的,不能只隔离某个schema。 如果一个schema经常出问题, 可以考虑线程池隔离。 参考[线程池](http://servicecomb.gitee.io/servicecomb-java-chassis-doc/java-chassis/zh_CN/build-provider/thread-pool/)


-- 
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:
users@infra.apache.org



[GitHub] [servicecomb-java-chassis] liubao68 commented on issue #2271: 触发隔离或者重试等事件,有优化自定义事件监听吗?达到监控告警目的

Posted by GitBox <gi...@apache.org>.
liubao68 commented on issue #2271:
URL: https://github.com/apache/servicecomb-java-chassis/issues/2271#issuecomment-793287987


   看看这里: https://docs.servicecomb.io/java-chassis/zh_CN/general-development/AlarmEvent/


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [servicecomb-java-chassis] ai930 commented on issue #2271: 触发隔离或者重试等事件,有优化自定义事件监听吗?达到监控告警目的

Posted by GitBox <gi...@apache.org>.
ai930 commented on issue #2271:
URL: https://github.com/apache/servicecomb-java-chassis/issues/2271#issuecomment-822312398


   ```
   String p = getStringProperty("60000",
           PROP_ROOT + microservice + "." + FILTER_ISOLATION + FILTER_SINGLE_TEST,
           PROP_ROOT + FILTER_ISOLATION + FILTER_SINGLE_TEST);
   ```
   获取隔离的相关配置纬度只能配置到MicroserviceName。如果一个应用内有一个服务异常,整个应用都会呗隔离。上次公司在使用的时候就出现应用实例被隔离完,导致注册中心无服务使用。。。。这个在新版本上有对这个纬度进行细化吗?


-- 
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:
users@infra.apache.org



[GitHub] [servicecomb-java-chassis] ai930 commented on issue #2271: 触发隔离或者重试等事件,有优化自定义事件监听吗?达到监控告警目的

Posted by GitBox <gi...@apache.org>.
ai930 commented on issue #2271:
URL: https://github.com/apache/servicecomb-java-chassis/issues/2271#issuecomment-828919832


   实例隔离! 可以隔离到`@RpcSchema(schemaId = "xxxService")`吗?


-- 
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:
users@infra.apache.org