You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by "Allan Yang (JIRA)" <ji...@apache.org> on 2016/07/16 08:53:20 UTC

[jira] [Updated] (HBASE-16238) It's useless to catch SESSIONEXPIRED exception and retry in RecoverableZooKeeper

     [ https://issues.apache.org/jira/browse/HBASE-16238?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Allan Yang updated HBASE-16238:
-------------------------------
        Fix Version/s: 1.1.5
                       1.2.2
                       0.98.20
    Affects Version/s: 1.1.5
                       1.2.2
                       0.98.20
               Status: Patch Available  (was: Open)

> It's useless to catch SESSIONEXPIRED exception and retry in RecoverableZooKeeper
> --------------------------------------------------------------------------------
>
>                 Key: HBASE-16238
>                 URL: https://issues.apache.org/jira/browse/HBASE-16238
>             Project: HBase
>          Issue Type: Bug
>          Components: Zookeeper
>    Affects Versions: 0.98.20, 1.2.2, 1.1.5
>            Reporter: Allan Yang
>            Priority: Minor
>             Fix For: 0.98.20, 1.2.2, 1.1.5
>
>
> After HBASE-5549, SESSIONEXPIRED exception was caught and retried with other zookeeper exceptions like ConnectionLoss. But it is useless to retry when a session expired happens, since the retry will never be successful. Though there is a config called "zookeeper.recovery.retry" to control retry times, in our cases, we set this config to a very big number like "99999". When a session expired happens, the regionserver should kill itself, but because of the retrying, threads of regionserver stuck at trying to reconnect to zookeeper, and never properly shut down.
> {code}
> public Stat exists(String path, boolean watch)
>   throws KeeperException, InterruptedException {
>     TraceScope traceScope = null;
>     try {
>       traceScope = Trace.startSpan("RecoverableZookeeper.exists");
>       RetryCounter retryCounter = retryCounterFactory.create();
>       while (true) {
>         try {
>           return checkZk().exists(path, watch);
>         } catch (KeeperException e) {
>           switch (e.code()) {
>             case CONNECTIONLOSS:
>             case SESSIONEXPIRED: //we shouldn't catch this
>             case OPERATIONTIMEOUT:
>               retryOrThrow(retryCounter, e, "exists");
>               break;
>             default:
>               throw e;
>           }
>         }
>         retryCounter.sleepUntilNextRetry();
>       }
>     } finally {
>       if (traceScope != null) traceScope.close();
>     }
>   }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)