Return-Path: Delivered-To: apmail-lucene-hadoop-dev-archive@locus.apache.org Received: (qmail 31647 invoked from network); 13 Sep 2007 21:50:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 13 Sep 2007 21:50:56 -0000 Received: (qmail 23556 invoked by uid 500); 13 Sep 2007 21:50:47 -0000 Delivered-To: apmail-lucene-hadoop-dev-archive@lucene.apache.org Received: (qmail 23510 invoked by uid 500); 13 Sep 2007 21:50:47 -0000 Mailing-List: contact hadoop-dev-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: hadoop-dev@lucene.apache.org Delivered-To: mailing list hadoop-dev@lucene.apache.org Received: (qmail 23444 invoked by uid 99); 13 Sep 2007 21:50:47 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 13 Sep 2007 14:50:46 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 13 Sep 2007 21:50:53 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id B2D8F71421A for ; Thu, 13 Sep 2007 14:50:32 -0700 (PDT) Message-ID: <10016343.1189720232730.JavaMail.jira@brutus> Date: Thu, 13 Sep 2007 14:50:32 -0700 (PDT) From: "Hadoop QA (JIRA)" To: hadoop-dev@lucene.apache.org Subject: [jira] Commented: (HADOOP-1774) Remove use of INode.parent in Block CRC upgrade In-Reply-To: <1838848.1187911230781.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/HADOOP-1774?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12527287 ] Hadoop QA commented on HADOOP-1774: ----------------------------------- -1, build or testing failed 2 attempts failed to build and test the latest attachment http://issues.apache.org/jira/secure/attachment/12365759/HADOOP-1774-correction.patch against trunk revision r575438. Test results: http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Patch/753/testReport/ Console output: http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Patch/753/console Please note that this message is automatically generated and may represent a problem with the automation system and not the patch. > Remove use of INode.parent in Block CRC upgrade > ----------------------------------------------- > > Key: HADOOP-1774 > URL: https://issues.apache.org/jira/browse/HADOOP-1774 > Project: Hadoop > Issue Type: Improvement > Components: dfs > Reporter: Raghu Angadi > Assignee: Raghu Angadi > Fix For: 0.15.0 > > Attachments: HADOOP-1774-correction.patch, HADOOP-1774.patch, HADOOP-1774.patch, HADOOP-1774.patch > > > HADOOP-1687 proposes various reductions in Namenode memory. One of the 'cuts' is to remove 'parent' field in INodes (8 bytes per file). HADOOP-1743 already deprecates INode.getAbsoluteName() method. > Block CRC Upgrade code still requires this field (blockID -> fileName -> parent -> INode for .crc file). If we don't want to use parent, we need to build INode-to-parent map at the beginning of the upgrade. Note this would increase memory required during upgrade by 50 bytes for each of non-crc files (50% of files). I would estimate this to be around 5% more memory. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.