Return-Path: Delivered-To: apmail-hadoop-hbase-dev-archive@minotaur.apache.org Received: (qmail 29973 invoked from network); 5 May 2009 19:50:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 5 May 2009 19:50:54 -0000 Received: (qmail 82195 invoked by uid 500); 5 May 2009 19:50:54 -0000 Delivered-To: apmail-hadoop-hbase-dev-archive@hadoop.apache.org Received: (qmail 82162 invoked by uid 500); 5 May 2009 19:50:54 -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 82152 invoked by uid 99); 5 May 2009 19:50:54 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 May 2009 19:50:54 +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.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 May 2009 19:50:52 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 65FB1234C004 for ; Tue, 5 May 2009 12:50:30 -0700 (PDT) Message-ID: <1321720451.1241553030416.JavaMail.jira@brutus> Date: Tue, 5 May 2009 12:50:30 -0700 (PDT) From: "Jean-Daniel Cryans (JIRA)" To: hbase-dev@hadoop.apache.org Subject: [jira] Commented: (HBASE-1372) TestGetRowVersions doesn't pass on 0.19 branch In-Reply-To: <529623481.1241542471294.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HBASE-1372?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12706173#action_12706173 ] Jean-Daniel Cryans commented on HBASE-1372: ------------------------------------------- Digging in the code I saw that the region server was waiting after the master when reporting. What happened is that when the master assigns a region, it writes an entry in the region historian. Problem is, the first time HCM (under the historian) sees a table there is a huge wait.... which was too long for the 6 seconds lease in the tests. I think for 0.19.2 we should just move that waiting time right up when the master starts with something like this in ProcessRegionOpen: {code} server.batchUpdate(metaRegionName, b, -1L); if (!this.historian.isOnline()) { // This is safest place to do the onlining of the historian in // the master. When we get to here, we know there is a .META. // for the historian to go against. this.historian.online(this.master.getConfiguration()); } this.historian.addRegionOpen(regionInfo, serverAddress); this.historian.getRegionHistory("dummy"); <<<< {code} For trunk we could work on improving HCM. > TestGetRowVersions doesn't pass on 0.19 branch > ---------------------------------------------- > > Key: HBASE-1372 > URL: https://issues.apache.org/jira/browse/HBASE-1372 > Project: Hadoop HBase > Issue Type: Bug > Affects Versions: 0.19.2 > Reporter: Jean-Daniel Cryans > Assignee: Jean-Daniel Cryans > Priority: Blocker > Fix For: 0.19.2 > > > Currently TestGetRowVersions doesn't pass because the region server is too slow to setup root and meta and gets a lease expired. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.