Return-Path: Delivered-To: apmail-hadoop-common-issues-archive@minotaur.apache.org Received: (qmail 97977 invoked from network); 23 Jul 2010 19:45:12 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 23 Jul 2010 19:45:12 -0000 Received: (qmail 92075 invoked by uid 500); 23 Jul 2010 19:45:12 -0000 Delivered-To: apmail-hadoop-common-issues-archive@hadoop.apache.org Received: (qmail 92027 invoked by uid 500); 23 Jul 2010 19:45:12 -0000 Mailing-List: contact common-issues-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: common-issues@hadoop.apache.org Delivered-To: mailing list common-issues@hadoop.apache.org Received: (qmail 92019 invoked by uid 99); 23 Jul 2010 19:45:12 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 23 Jul 2010 19:45:11 +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; Fri, 23 Jul 2010 19:45:11 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o6NJiotQ020248 for ; Fri, 23 Jul 2010 19:44:51 GMT Message-ID: <32479425.555111279914290561.JavaMail.jira@thor> Date: Fri, 23 Jul 2010 15:44:50 -0400 (EDT) From: "Doug Cutting (JIRA)" To: common-issues@hadoop.apache.org Subject: [jira] Commented: (HADOOP-6870) Add FileSystem#listLocatedStatus to list a directory's content together with each file's block locations In-Reply-To: <13042840.506371279749289722.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/HADOOP-6870?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12891759#action_12891759 ] Doug Cutting commented on HADOOP-6870: -------------------------------------- Errors in iteration should turn into a subclass of RuntimeException, not silently fail, no? Also, it looks to me that recursive file listings across symlinks don't work. Instinctively, it seems to me they should. > Add FileSystem#listLocatedStatus to list a directory's content together with each file's block locations > -------------------------------------------------------------------------------------------------------- > > Key: HADOOP-6870 > URL: https://issues.apache.org/jira/browse/HADOOP-6870 > Project: Hadoop Common > Issue Type: New Feature > Components: fs > Affects Versions: 0.22.0 > Reporter: Hairong Kuang > Assignee: Hairong Kuang > Fix For: 0.22.0 > > Attachments: listFiles.patch > > > This jira implements the new FileSystem API as proposed in HDFS-202. The new API aims to eliminate individual "getFileBlockLocations" calls to NN for each file in the input directory of a job. Instead, a file's block locations are returned together with FileStatus when listing a directory, thus improving getSplits performance. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.