dubbo超时机制的底层实现

可以先看这边博客对dubbo的整体架构有个基本的了解

DUBBO架构

1 dubbo通信机制

dubbo是一种NIO模式,消费端发起请求后得到一个ResponseFuture,然后消费端一直轮询这个ResponseFuture直至超时或者收到服务端的返回结果

2 第一种超时机制

 public Object get(int timeout) throws RemotingException {
        //1 获取超时时间,该timeout是根据配置文件的优先级获取的
        if (timeout <= 0) {
            timeout = Constants.DEFAULT_TIMEOUT;
        }
        //2 如果response不为空,则代表返回报文已经接收到了
        if (!isDone()) {
            long start = System.currentTimeMillis();
            lock.lock();
            try {
                //3 循环检测返回报文是否已经接收到
                while (!isDone()) {
                    //4 如果没有接到到,则释放线程,等待时间为超时时间,这里会有两种情况会被唤醒
                    done.await(timeout, TimeUnit.MILLISECONDS);
                    //5 判断是否超时
                    if (isDone() || System.currentTimeMillis() - start > timeout) {
                        break;
                    }
                }
            } catch (InterruptedException e) {
                throw new RuntimeException(e);
            } finally {
                lock.unlock();
            }
            //6 如果循环结束,还没有完成,则说明超时了
            if (!isDone()) {
                throw new TimeoutException(sent > 0, channel, getTimeoutMessage(false));
            }
        }
        return returnFromResponse();
    }

其中第4步中,线程被唤醒的情况有两种

1) 当接收到返回报文之后回调用done.signal();

2)  等待timeout毫秒后

如果数据返回了或者已经超时了,都会终止循环,最后判断是否是因为超时终止的。

这是dubbo的超时第一种机制

3 dubbo的另外一种超时机制

dubbo是可以配置异步,那么当时异步模式的时候,在发送完消息之后,不会立即通过ResponseFuture的get方法来阻塞的获取返回结果,而是将future放入RpcContext中之后就返回了,刚才所说的在get中实现的超时机制就不会起作用了,所以dubbo还有第二种机制,先看下面的DefaultFuture源码片段

  static {
        Thread th = new Thread(new RemotingInvocationTimeoutScan(), "DubboResponseTimeoutScanTimer");
        th.setDaemon(true);
        th.start();
    }
private static class RemotingInvocationTimeoutScan implements Runnable {

        public void run() {
            while (true) {
                try {
                    //1 遍历所有FUTURES集合
                    for (DefaultFuture future : FUTURES.values()) {
                        if (future == null || future.isDone()) {
                            continue;
                        }
                        //根据future记录的开始时间,判断是否已经超时
                        if (System.currentTimeMillis() - future.getStartTimestamp() > future.getTimeout()) {
                            // create exception response.
                            Response timeoutResponse = new Response(future.getId());
                            // set timeout status.
                            timeoutResponse.setStatus(future.isSent() ? Response.SERVER_TIMEOUT : Response.CLIENT_TIMEOUT);
                            timeoutResponse.setErrorMessage(future.getTimeoutMessage(true));
                            // handle response.
                            DefaultFuture.received(future.getChannel(), timeoutResponse);
                        }
                    }
                    //休眠30秒
                    Thread.sleep(30);
                } catch (Throwable e) {
                    logger.error("Exception when scan the timeout invocation of remoting.", e);
                }
            }
        }
    }

首先在类加载的时候就会开启了一个子线程, 这个子线程就是不断的检测还没有接收到返回报文的future,验证每一个是否已经超时,如果超时则返回相应的超时报文,这种机制就保证了异步模式也具体超时这样的特性




 
  

 
 

你可能感兴趣的:(dubbo)