You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "zhou_shuaifeng@sina.com" <zh...@sina.com> on 2015/09/08 13:10:28 UTC

RpcRetryingCaller error message is too simple

in class RpcRetryingCaller, line 148 to 152 are as follows:

      try {
        Thread.sleep(expectedSleep);
      } catch (InterruptedException e) {
        throw new InterruptedIOException("Interrupted after " + tries + " tries  on " + retries);
      }
      
if retry number is 5 currently, then get a InterruptedException, the error log message is too simple,
we can print some retry message in the earlier retry



zhou_shuaifeng@sina.com