Return-Path: Delivered-To: apmail-hadoop-core-dev-archive@www.apache.org Received: (qmail 86966 invoked from network); 4 Mar 2009 17:50:24 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 4 Mar 2009 17:50:24 -0000 Received: (qmail 94493 invoked by uid 500); 4 Mar 2009 17:50:20 -0000 Delivered-To: apmail-hadoop-core-dev-archive@hadoop.apache.org Received: (qmail 94455 invoked by uid 500); 4 Mar 2009 17:50:20 -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 94444 invoked by uid 99); 4 Mar 2009 17:50:20 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Mar 2009 09:50:20 -0800 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; Wed, 04 Mar 2009 17:50:18 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 4DD87234C4AF for ; Wed, 4 Mar 2009 09:49:56 -0800 (PST) Message-ID: <619576044.1236188996317.JavaMail.jira@brutus> Date: Wed, 4 Mar 2009 09:49:56 -0800 (PST) From: "Hadoop QA (JIRA)" To: core-dev@hadoop.apache.org Subject: [jira] Commented: (HADOOP-3227) Implement a binary input/output format for Streaming In-Reply-To: <450180509.1207812244751.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-3227?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12678809#action_12678809 ] Hadoop QA commented on HADOOP-3227: ----------------------------------- -1 overall. Here are the results of testing the latest attachment http://issues.apache.org/jira/secure/attachment/12401366/hadoop-0.19.1-streaming.jar against trunk revision 749919. +1 @author. The patch does not contain any @author tags. -1 tests included. The patch doesn't appear to include any new or modified tests. Please justify why no tests are needed for this patch. -1 patch. The patch command could not apply the patch. Console output: http://hudson.zones.apache.org/hudson/job/Hadoop-Patch-minerva.apache.org/4/console This message is automatically generated. > Implement a binary input/output format for Streaming > ---------------------------------------------------- > > Key: HADOOP-3227 > URL: https://issues.apache.org/jira/browse/HADOOP-3227 > Project: Hadoop Core > Issue Type: Improvement > Components: contrib/streaming > Affects Versions: 0.19.1 > Reporter: Arun C Murthy > Assignee: Arun C Murthy > Attachments: hadoop-0.19.1-streaming.jar, hadoop-3227.patch > > > Lots of streaming applications process textual data with 1 record per line and fields separated by a delimiter. It turns out that there is no point in using any of Hadoop's input/output formats since the streaming script/binary itself will parse the input and break into records and fields. In such cases we should provide users with a binary input/output format which just sends 64k (or so) blocks of data directly from HDFS to the streaming application. > I did something very similar for Pig-Streaming (PIG-94 - BinaryStorage) which resulted in 300%+ speedup for scanning (identity mapper & map-only jobs) data... the parsing done by input/output formats in these cases were pure-overhead. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.