Return-Path: Delivered-To: apmail-hadoop-hbase-dev-archive@locus.apache.org Received: (qmail 37587 invoked from network); 15 Aug 2008 16:34:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 15 Aug 2008 16:34:36 -0000 Received: (qmail 75506 invoked by uid 500); 15 Aug 2008 16:34:34 -0000 Delivered-To: apmail-hadoop-hbase-dev-archive@hadoop.apache.org Received: (qmail 75487 invoked by uid 500); 15 Aug 2008 16:34:34 -0000 Mailing-List: contact hbase-dev-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: hbase-dev@hadoop.apache.org Delivered-To: mailing list hbase-dev@hadoop.apache.org Received: (qmail 75469 invoked by uid 99); 15 Aug 2008 16:34:34 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 15 Aug 2008 09:34:34 -0700 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.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 15 Aug 2008 16:33:45 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 4E821234C1B1 for ; Fri, 15 Aug 2008 09:33:44 -0700 (PDT) Message-ID: <124730830.1218818024320.JavaMail.jira@brutus> Date: Fri, 15 Aug 2008 09:33:44 -0700 (PDT) From: "Jean-Daniel Cryans (JIRA)" To: hbase-dev@hadoop.apache.org Subject: [jira] Updated: (HBASE-830) Debugging HCM.locateRegionInMeta is painful In-Reply-To: <686031128.1218727786113.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HBASE-830?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jean-Daniel Cryans updated HBASE-830: ------------------------------------- Attachment: hbase-826-v1.patch Forgot to remove a tab. > Debugging HCM.locateRegionInMeta is painful > ------------------------------------------- > > Key: HBASE-830 > URL: https://issues.apache.org/jira/browse/HBASE-830 > Project: Hadoop HBase > Issue Type: Bug > Components: client > Affects Versions: 0.2.0 > Reporter: Jean-Daniel Cryans > Priority: Minor > Fix For: 0.2.1, 0.3.0 > > Attachments: hbase-826-v1.patch > > > I've been debugging a case where a bunch of reduces were hanging for no apparent reason and then get killed because they did not do anything for 600 seconds. I figured that it's because we are stuck in a very long waiting time due to retry backoffs. > {code} > public static int RETRY_BACKOFF[] = { 1, 1, 1, 1, 2, 4, 8, 16, 32, 64 }; > {code} > That means we wait 10 sec, 10 sec, 10, 10, ... then 640 sec. That's a long time, do we really need that much time to finally be warned that there's a bug in HBase? > Also, the places where we get this: > {code} > LOG.debug("reloading table servers because: " + t.getMessage()); > {code} > should be more verbose. I my logs these are caused by a table not found but the only thing I see is "reloading table servers because: tableName". -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.