Return-Path: Delivered-To: apmail-hadoop-core-dev-archive@www.apache.org Received: (qmail 25909 invoked from network); 29 May 2009 21:36:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 29 May 2009 21:36:58 -0000 Received: (qmail 7250 invoked by uid 500); 29 May 2009 21:37:10 -0000 Delivered-To: apmail-hadoop-core-dev-archive@hadoop.apache.org Received: (qmail 7196 invoked by uid 500); 29 May 2009 21:37:09 -0000 Mailing-List: contact core-dev-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: core-dev@hadoop.apache.org Delivered-To: mailing list core-dev@hadoop.apache.org Received: (qmail 7179 invoked by uid 99); 29 May 2009 21:37:09 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 29 May 2009 21:37:09 +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; Fri, 29 May 2009 21:37:06 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 930C1234C004 for ; Fri, 29 May 2009 14:36:45 -0700 (PDT) Message-ID: <1766517490.1243633005588.JavaMail.jira@brutus> Date: Fri, 29 May 2009 14:36:45 -0700 (PDT) From: "Hadoop QA (JIRA)" To: core-dev@hadoop.apache.org Subject: [jira] Commented: (HADOOP-5861) s3n files are not getting split by default In-Reply-To: <220895109.1242534825588.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/HADOOP-5861?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12714617#action_12714617 ] Hadoop QA commented on HADOOP-5861: ----------------------------------- -1 overall. Here are the results of testing the latest attachment http://issues.apache.org/jira/secure/attachment/12409188/hadoop-5861.patch against trunk revision 780114. +1 @author. The patch does not contain any @author tags. +1 tests included. The patch appears to include 9 new or modified tests. -1 patch. The patch command could not apply the patch. Console output: http://hudson.zones.apache.org/hudson/job/Hadoop-Patch-vesta.apache.org/428/console This message is automatically generated. > s3n files are not getting split by default > ------------------------------------------- > > Key: HADOOP-5861 > URL: https://issues.apache.org/jira/browse/HADOOP-5861 > Project: Hadoop Core > Issue Type: Bug > Components: fs/s3 > Affects Versions: 0.19.1 > Environment: ec2 > Reporter: Joydeep Sen Sarma > Assignee: Tom White > Attachments: hadoop-5861.patch > > > running with stock ec2 scripts against hadoop-19 - i tried to run a job against a directory with 4 text files - each about 2G in size. These were not split (only 4 mappers were run). > The reason seems to have two parts - primarily that S3N files report a block size of 5G. This causes FileInputFormat.getSplits to fall back on goal size (which is totalsize/conf.get("mapred.map.tasks")).Goal Size in this case was 4G - hence the files were not split. This is not an issue with other file systems since the block size reported is much smaller and the splits get based on block size (not goal size). > can we make the S3N files report a more reasonable block size? -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.