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/11/14 05:27:37 UTC

[GitHub] [dubbo] mrhbj opened a new issue #9270: dubbo MigrationInvoker promotion problem

mrhbj opened a new issue #9270:
URL: https://github.com/apache/dubbo/issues/9270


      MigrationInvoker promotion is default 100, so this judge has problem,because it is inefficient, it doesn't need to use ThreadLocalRandom.current().nextDouble(100) where promotion is default 100.
    
      @Override
       public Result invoke(Invocation invocation) throws RpcException {
           if (currentAvailableInvoker != null) {
               if (step == APPLICATION_FIRST) {
                   // call ratio calculation based on random value
                   if (ThreadLocalRandom.current().nextDouble(100) > promotion) {
                       return invoker.invoke(invocation);
                   }
               }
               return currentAvailableInvoker.invoke(invocation);
           }


-- 
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