ztelur opened a new issue #357: URL: https://github.com/apache/dubbo-go-pixiu/issues/357
<!-- Please only use this template for submitting enhancement requests --> **What would you like to be added**: Circuit breaking is a critical component of distributed systems. It’s nearly always better to fail quickly and apply back pressure downstream as soon as possible. Once the failures reach a certain threshold, the circuit breaker trips, and all further calls to the circuit breaker return with an error, without the protected call being made at all. Usually you'll also want some kind of monitor alert if the circuit breaker trips. More detail in https://martinfowler.com/bliki/CircuitBreaker.html. You can use sentinel circuit breaker. document is https://sentinelguard.io/en-us/docs/golang/circuit-breaking.html. You can reuse sentinel related code in ratelimit filter. You can only support error count strategy in sentinel for first phase. **Why is this needed**: -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
