You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "Ted Yu (JIRA)" <ji...@apache.org> on 2014/07/21 05:20:38 UTC

[jira] [Created] (HBASE-11551) BucketCache$WriterThread.run() doesn't handle exceptions correctly

Ted Yu created HBASE-11551:
------------------------------

             Summary: BucketCache$WriterThread.run() doesn't handle exceptions correctly
                 Key: HBASE-11551
                 URL: https://issues.apache.org/jira/browse/HBASE-11551
             Project: HBase
          Issue Type: Bug
            Reporter: Ted Yu
            Assignee: Ted Yu


Currently the catch is outside the while loop:
{code}
      try {
        while (cacheEnabled && writerEnabled) {
...
      } catch (Throwable t) {
        LOG.warn("Failed doing drain", t);
      }
{code}
When exception (e.g. BucketAllocatorException) is thrown, run() method would terminate.



--
This message was sent by Atlassian JIRA
(v6.2#6252)