Return-Path: Delivered-To: apmail-hbase-issues-archive@www.apache.org Received: (qmail 28484 invoked from network); 20 Jan 2011 23:50:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 20 Jan 2011 23:50:07 -0000 Received: (qmail 92876 invoked by uid 500); 20 Jan 2011 23:50:07 -0000 Delivered-To: apmail-hbase-issues-archive@hbase.apache.org Received: (qmail 92822 invoked by uid 500); 20 Jan 2011 23:50:06 -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 92814 invoked by uid 99); 20 Jan 2011 23:50:06 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Jan 2011 23:50:06 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.22] (HELO thor.apache.org) (140.211.11.22) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Jan 2011 23:50:06 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id p0KNnj63000509 for ; Thu, 20 Jan 2011 23:49:45 GMT Message-ID: <27337654.94651295567385674.JavaMail.jira@thor> Date: Thu, 20 Jan 2011 18:49:45 -0500 (EST) From: "stack (JIRA)" To: issues@hbase.apache.org Subject: [jira] Resolved: (HBASE-3449) Server shutdown handlers deadlocked waiting for META In-Reply-To: <23982690.22781295300144716.JavaMail.jira@thor> 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-3449?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] stack resolved HBASE-3449. -------------------------- Resolution: Fixed I committed the below workaround to branch and trunk and opened HBASE-3458 to fix it so issue cannot ever happen. {code} Index: src/main/java/org/apache/hadoop/hbase/master/HMaster.java =================================================================== --- src/main/java/org/apache/hadoop/hbase/master/HMaster.java (revision 1061564) +++ src/main/java/org/apache/hadoop/hbase/master/HMaster.java (working copy) @@ -518,7 +518,7 @@ this.executorService.startExecutorService(ExecutorType.MASTER_SERVER_OPERATIONS, conf.getInt("hbase.master.executor.serverops.threads", 3)); this.executorService.startExecutorService(ExecutorType.MASTER_META_SERVER_OPERATIONS, - conf.getInt("hbase.master.executor.serverops.threads", 2)); + conf.getInt("hbase.master.executor.serverops.threads", 5)); // We depend on there being only one instance of this executor running // at a time. To do concurrency, would need fencing of enable/disable of // tables. {code} > Server shutdown handlers deadlocked waiting for META > ---------------------------------------------------- > > Key: HBASE-3449 > URL: https://issues.apache.org/jira/browse/HBASE-3449 > Project: HBase > Issue Type: Bug > Affects Versions: 0.90.0 > Reporter: Todd Lipcon > Assignee: stack > Priority: Blocker > Fix For: 0.90.1 > > > I have a situation where both of my MASTER_META_SERVER_OPERATIONS handlers are handling server shutdowns, and both of them are waiting on ROOT, which isn't coming up. Unclear exactly how this happened, but I triggered it by doing a rolling restart. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.