Return-Path: X-Original-To: apmail-hbase-issues-archive@www.apache.org Delivered-To: apmail-hbase-issues-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id D9DA810832 for ; Wed, 23 Jul 2014 14:48:39 +0000 (UTC) Received: (qmail 87455 invoked by uid 500); 23 Jul 2014 14:48:39 -0000 Delivered-To: apmail-hbase-issues-archive@hbase.apache.org Received: (qmail 87305 invoked by uid 500); 23 Jul 2014 14:48:39 -0000 Mailing-List: contact issues-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@hbase.apache.org Received: (qmail 87057 invoked by uid 99); 23 Jul 2014 14:48:39 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 23 Jul 2014 14:48:39 +0000 Date: Wed, 23 Jul 2014 14:48:38 +0000 (UTC) From: "stack (JIRA)" To: issues@hbase.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Resolved] (HBASE-11551) BucketCache$WriterThread.run() doesn't handle exceptions correctly MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/HBASE-11551?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] stack resolved HBASE-11551. --------------------------- Resolution: Fixed Fix Version/s: 2.0.0 0.99.0 Committed to branch-1 and master. Committing rather than closing. Thanks for the input [~zjushch]. This issue has [~ted_yu] on it but seems like it yours. Looks like there is still issue in here going by posted exception. I'd like to fix it. How'd it come about? > 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 > Fix For: 0.99.0, 2.0.0 > > Attachments: 11551-v1.txt > > > 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, silently. -- This message was sent by Atlassian JIRA (v6.2#6252)