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

[GitHub] [dubbo] dkisser commented on issue #8710: FAIL_OVER和FAIL_BACK 区别

dkisser commented on issue #8710:
URL: https://github.com/apache/dubbo/issues/8710#issuecomment-914144638


   `/**
    * When invoke fails, log the initial error and retry other invokers (retry n times, which means at most n different invokers will be invoked)
    * Note that retry causes latency.
    * <p>
    * <a href="http://en.wikipedia.org/wiki/Failover">Failover</a>
    *
    */
   public class FailoverClusterInvoker<T> extends AbstractClusterInvoker<T> {
   ......
   `
   `/**
    * When fails, record failure requests and schedule for retry on a regular interval.
    * Especially useful for services of notification.
    *
    * <a href="http://en.wikipedia.org/wiki/Failback">Failback</a>
    */
   public class FailbackClusterInvoker<T> extends AbstractClusterInvoker<T> {
   ......
   `


-- 
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: notifications-unsubscribe@dubbo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org
For additional commands, e-mail: notifications-help@dubbo.apache.org