Return-Path: Delivered-To: apmail-incubator-pig-dev-archive@locus.apache.org Received: (qmail 44117 invoked from network); 3 Apr 2008 12:48:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 3 Apr 2008 12:48:57 -0000 Received: (qmail 99086 invoked by uid 500); 3 Apr 2008 12:48:58 -0000 Delivered-To: apmail-incubator-pig-dev-archive@incubator.apache.org Received: (qmail 99005 invoked by uid 500); 3 Apr 2008 12:48:58 -0000 Mailing-List: contact pig-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: pig-dev@incubator.apache.org Delivered-To: mailing list pig-dev@incubator.apache.org Received: (qmail 98996 invoked by uid 99); 3 Apr 2008 12:48:57 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 Apr 2008 05:48:57 -0700 X-ASF-Spam-Status: No, hits=-1998.5 required=10.0 tests=ALL_TRUSTED,WEIRD_PORT 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; Thu, 03 Apr 2008 12:48:14 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id DA8A7234C0B7 for ; Thu, 3 Apr 2008 05:46:24 -0700 (PDT) Message-ID: <1112358807.1207226784887.JavaMail.jira@brutus> Date: Thu, 3 Apr 2008 05:46:24 -0700 (PDT) From: "Pi Song (JIRA)" To: pig-dev@incubator.apache.org Subject: [jira] Commented: (PIG-174) Pig hangs at progress 0% in this case In-Reply-To: <2044393186.1206748464340.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/PIG-174?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12585085#action_12585085 ] Pi Song commented on PIG-174: ----------------------------- +1 setupMapPipe is supposed to be in there since the beginning. > Pig hangs at progress 0% in this case > ------------------------------------- > > Key: PIG-174 > URL: https://issues.apache.org/jira/browse/PIG-174 > Project: Pig > Issue Type: Bug > Reporter: Xu Zhang > Assignee: Arun C Murthy > Priority: Minor > Attachments: PIG-174_0_20080402.patch > > > Pig appears to hang at progress 0% with the following console output: > {noformat} > 2008-03-28 13:58:50,398 [main] INFO org.apache.pig.backend.hadoop.executionengine.HExecutionEngine - Connecting to hadoop file system at: wilbur11.labs.corp.sp1.yahoo.com:8020 > 2008-03-28 13:58:51,342 [main] INFO org.apache.pig.backend.hadoop.executionengine.POMapreduce - ----- MapReduce Job ----- > 2008-03-28 13:58:51,343 [main] INFO org.apache.pig.backend.hadoop.executionengine.POMapreduce - Input: [/user/pig/tests/data/singlefile/studenttab10k:org.apache.pig.builtin.PigStorage()] > 2008-03-28 13:58:51,343 [main] INFO org.apache.pig.backend.hadoop.executionengine.POMapreduce - Map: [[*]->org.apache.pig.impl.eval.StreamSpec@16fa474] > 2008-03-28 13:58:51,343 [main] INFO org.apache.pig.backend.hadoop.executionengine.POMapreduce - Group: null > 2008-03-28 13:58:51,343 [main] INFO org.apache.pig.backend.hadoop.executionengine.POMapreduce - Combine: null > 2008-03-28 13:58:51,344 [main] INFO org.apache.pig.backend.hadoop.executionengine.POMapreduce - Reduce: null > 2008-03-28 13:58:51,344 [main] INFO org.apache.pig.backend.hadoop.executionengine.POMapreduce - Output: results_7:org.apache.pig.builtin.PigStorage > 2008-03-28 13:58:51,344 [main] INFO org.apache.pig.backend.hadoop.executionengine.POMapreduce - Split: null > 2008-03-28 13:58:51,344 [main] INFO org.apache.pig.backend.hadoop.executionengine.POMapreduce - Map parallelism: -1 > 2008-03-28 13:58:51,344 [main] INFO org.apache.pig.backend.hadoop.executionengine.POMapreduce - Reduce parallelism: -1 > 2008-03-28 13:58:54,245 [main] INFO org.apache.pig.backend.hadoop.executionengine.mapreduceExec.MapReduceLauncher - Pig progress = 0% > {noformat} > The contents of the pig script used is as follows: > {code} > define X `./streamingscript/MySimpleStreamApp.pl` ship('./streamingscript/MySimpleStreamApp.pl'); > A = load '/user/pig/tests/data/singlefile/studenttab10k'; > B = stream A through X; > store B into 'results_7'; > {code} > The streaming script "MySimpleStreamApp.pl" is as follows and it is located under the streamingscript directory in my home directory. I issued the pig command from my home directory. > {code} > #!/home/y/bin/perl > while (<>) { > chomp; > print "$_\n"; > } > {code} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.