1. 程式人生 > >Dubbo 併發調優的幾個引數

Dubbo 併發調優的幾個引數

消費端調優:
一、connections
這個引數可以在服務提供端釋出服務的時候配置,也可以在消費端引用服務的時候配置,但是這個值是隻對消費端生效的,所以一般是服務提供端不建議配置,如果配置,請斟酌一下,詳情請檢視《對connections引數的設定 》。不管是在消費端或者服務提供端,如果對某個服務配置了connections引數,並且該引數大於1,那麼就會導致消費端在建立該服務的遠端socketclient的時候(如果是dubbo協議的話)將會給該服務初始化一個私有的socketclient。所以一般不建議對這個值進行調整。
服務端優化調整:
相對餘消費端,服務端調優的引數相對多一些,但是配置的時候也需要謹慎。

一、executes
這個引數是可以精確到方法級別的引數,就是可以指定呼叫遠端介面某個方法的是該引數的值。具體是怎麼配置的可以到官方文件裡面去看看那,這裡只是描述這個引數實際意義以及使用的時候應該注意點。

要說這個引數,就要所介紹ExecuteLimitFilter,他是這個引數使用者,看到Filter大家就應該懂了,就是在每個方法請求前後加上業務邏輯。下面貼出裡面的程式碼:

  1. @Activate(group = Constants.PROVIDER, value = Constants.EXECUTES_KEY)  
  2. publicclass ExecuteLimitFilter implements
     Filter {  
  3.     public Result invoke(Invoker<?> invoker, Invocation invocation) throws RpcException {  
  4.         URL url = invoker.getUrl();  
  5.         String methodName = invocation.getMethodName();  
  6.         int max = url.getMethodParameter(methodName, Constants.EXECUTES_KEY, 0);  
  7.         if (max > 
    0) {  
  8.             RpcStatus count = RpcStatus.getStatus(url, invocation.getMethodName());  
  9.             if (count.getActive() >= max) {  
  10.                 thrownew RpcException("Failed to invoke method " + invocation.getMethodName() + " in provider " + url + ", cause: The service using threads greater than <dubbo:service executes=\"" + max + "\" /> limited.");  
  11.             }  
  12.         }  
  13.         long begin = System.currentTimeMillis();  
  14.         boolean isException = false;  
  15.         RpcStatus.beginCount(url, methodName);  
  16.         try {  
  17.             Result result = invoker.invoke(invocation);  
  18.             return result;  
  19.         } catch (Throwable t) {  
  20.             isException = true;  
  21.             if(t instanceof RuntimeException) {  
  22.                 throw (RuntimeException) t;  
  23.             }  
  24.             else {  
  25.                 thrownew RpcException("unexpected exception when ExecuteLimitFilter", t);  
  26.             }  
  27.         }  
  28.         finally {  
  29.             RpcStatus.endCount(url, methodName, System.currentTimeMillis() - begin, isException);  
  30.         }  
  31.     }  
  32. }  

上面這段程式碼主要是看兩個地方,分別是第7行和第10行,第7行是獲取配置的executes的值,是一個int型別的,描述數量,然後第10行是獲取當前請求方法當前的狀態,裡面既有一個active屬性(該屬性是AtomacInteger型別的,大家應該懂了為什麼用這個型別),表示當前請求的方法處於執行狀態的執行緒數量,如果這個值大於或者等於配置的值那麼直接丟擲異常,那麼消費端就會收到一個RPC的異常導致呼叫服務失敗,這是這個引數最終導致的效果。
二、actives
這個引數基本上和excetes一樣,但是有一點不同,在說這不同之前,還是看看另一個Filter,看名字你們應該就知道它是做什麼的了——ActiveLimitFilter,下面同樣貼出程式碼:
  1. @Activate(group = Constants.CONSUMER, value = Constants.ACTIVES_KEY)  
  2. publicclass ActiveLimitFilter implements Filter {  
  3.     public Result invoke(Invoker<?> invoker, Invocation invocation) throws RpcException {  
  4.         URL url = invoker.getUrl();  
  5.         String methodName = invocation.getMethodName();  
  6.         int max = invoker.getUrl().getMethodParameter(methodName, Constants.ACTIVES_KEY, 0);  
  7.         RpcStatus count = RpcStatus.getStatus(invoker.getUrl(), invocation.getMethodName());  
  8.         if (max > 0) {  
  9.             long timeout = invoker.getUrl().getMethodParameter(invocation.getMethodName(), Constants.TIMEOUT_KEY, 0);  
  10.             long start = System.currentTimeMillis();  
  11.             long remain = timeout;  
  12.             int active = count.getActive();  
  13.             if (active >= max) {  
  14.                 synchronized (count) {  
  15.                     while ((active = count.getActive()) >= max) {  
  16.                         try {  
  17.                             count.wait(remain);  
  18.                         } catch (InterruptedException e) {  
  19.                         }  
  20.                         long elapsed = System.currentTimeMillis() - start;  
  21.                         remain = timeout - elapsed;  
  22.                         if (remain <= 0) {  
  23.                             thrownew RpcException("Waiting concurrent invoke timeout in client-side for service:  "
  24.                                                    + invoker.getInterface().getName() + ", method: "
  25.                                                    + invocation.getMethodName() + ", elapsed: " + elapsed  
  26.                                                    + ", timeout: " + timeout + ". concurrent invokes: " + active  
  27.                                                    + ". max concurrent invoke limit: " + max);  
  28.                         }  
  29.                     }  
  30.                 }  
  31.             }  
  32.         }  
  33.         try {  
  34.             long begin = System.currentTimeMillis();  
  35.             RpcStatus.beginCount(url, methodName);  
  36.             try {  
  37.                 Result result = invoker.invoke(invocation);  
  38.                 RpcStatus.endCount(url, methodName, System.currentTimeMillis() - begin, true);  
  39.                 return result;  
  40.             } catch (RuntimeException t) {  
  41.                 RpcStatus.endCount(url, methodName, System.currentTimeMillis() - begin, false);  
  42.                 throw t;  
  43.             }  
  44.         } finally {  
  45.             if(max>0){  
  46.                 synchronized (count) {  
  47.                     count.notify();  
  48.                 }  
  49.             }  
  50.         }  
  51.     }  
  52. }  
上面程式碼大致上和executes一樣,唯一不同的就是多了一個等待時間,噹噹前執行該方法的執行緒超出了最大限制,那麼可以等待一個timeout時間,如果時間過了還是超出了最大限制,那麼就丟擲異常。這個相對餘executes來說溫柔那麼點。這就是那點不同!
三、accepts 
在看程式碼之前先看看這個引數的意思,這個引數是告知服務提供端能接收多少個消費端連線該服務提供方。下面接著上程式碼,這個引數的體現是在類AbstractServer中。程式碼如下:


要說這個引數,就要所介紹ExecuteLimitFilter,他是這個引數使用者,看到Filter大家就應該懂了,就是在每個方法請求前後加上業務邏輯。下面貼出裡面的程式碼:

  1. @Override
  2.     publicvoid connected(Channel ch) throws RemotingException {  
  3.         Collection<Channel> channels = getChannels();  
  4.         if (accepts > 0 && channels.size() > accepts) {  
  5.             logger.error("Close channel " + ch + ", cause: The server " + ch.getLocalAddress() + " connections greater than max config " + accepts);  
  6.             ch.close();  
  7.             return;  
  8.         }  
  9.         super.connected(ch);  
  10.     }  

這個方法是每個消費端向服務提供端建立一個socket連線的時候都會觸發,上面可以清晰看到如果連線當前服務端的消費端數量超出了配置的值,那麼將會關閉當前消費端連線的請求。這個只是對socket連線的數量限制,而不是像上面兩個引數對呼叫執行緒的配置。