Return-Path: X-Original-To: apmail-hadoop-hdfs-issues-archive@minotaur.apache.org Delivered-To: apmail-hadoop-hdfs-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 7B55EE22D for ; Wed, 19 Dec 2012 08:53:17 +0000 (UTC) Received: (qmail 49142 invoked by uid 500); 19 Dec 2012 08:53:16 -0000 Delivered-To: apmail-hadoop-hdfs-issues-archive@hadoop.apache.org Received: (qmail 49003 invoked by uid 500); 19 Dec 2012 08:53:16 -0000 Mailing-List: contact hdfs-issues-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: hdfs-issues@hadoop.apache.org Delivered-To: mailing list hdfs-issues@hadoop.apache.org Received: (qmail 48288 invoked by uid 99); 19 Dec 2012 08:53:15 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 Dec 2012 08:53:15 +0000 Date: Wed, 19 Dec 2012 08:53:15 +0000 (UTC) From: "Li Junjun (JIRA)" To: hdfs-issues@hadoop.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (HDFS-3448) CLONE - Why open method in class DFSClient would compare old LocatedBlocks and new LocatedBlocks? 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/HDFS-3448?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13535787#comment-13535787 ] Li Junjun commented on HDFS-3448: --------------------------------- Sorry,i'm be familiar with jira and svn > CLONE - Why open method in class DFSClient would compare old LocatedBlocks and new LocatedBlocks? > ------------------------------------------------------------------------------------------------- > > Key: HDFS-3448 > URL: https://issues.apache.org/jira/browse/HDFS-3448 > Project: Hadoop HDFS > Issue Type: Wish > Components: hdfs-client > Affects Versions: 1.0.1 > Reporter: Li Junjun > Assignee: Todd Lipcon > Original Estimate: 168h > Remaining Estimate: 168h > > I think there are two situations. > 1,the file has been swapped with another file,we check the blockId,that's correct we throw Exceptions! > 2,but if the file has not been swapped but has been appended ,we should just check the blockId ,and should not care about the block's stamp , because in fact we got the right and updated block list , cause file in hdfs can't be truncate . > so how about we do it like this ? > if ( oldIter.next().getBlock().getBlockId() != newIter.next().getBlock().getBlockId() ) { throw new IOException("Blocklist for " + src + " has changed!"); } > after all , between two calls to openInfo() the file can be swapped and then appending,so we should not ignore the under construction file. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira