Return-Path: X-Original-To: apmail-pig-dev-archive@www.apache.org Delivered-To: apmail-pig-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 318CB98DE for ; Sun, 4 Dec 2011 07:11:06 +0000 (UTC) Received: (qmail 93710 invoked by uid 500); 4 Dec 2011 07:11:05 -0000 Delivered-To: apmail-pig-dev-archive@pig.apache.org Received: (qmail 93672 invoked by uid 500); 4 Dec 2011 07:11:05 -0000 Mailing-List: contact dev-help@pig.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@pig.apache.org Delivered-To: mailing list dev@pig.apache.org Received: (qmail 93455 invoked by uid 500); 4 Dec 2011 07:11:04 -0000 Delivered-To: apmail-hadoop-pig-dev@hadoop.apache.org Received: (qmail 93393 invoked by uid 99); 4 Dec 2011 07:11:04 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 04 Dec 2011 07:11:04 +0000 X-ASF-Spam-Status: No, hits=-2001.2 required=5.0 tests=ALL_TRUSTED,RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 04 Dec 2011 07:11:01 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id 41DEDC4F89 for ; Sun, 4 Dec 2011 07:10:40 +0000 (UTC) Date: Sun, 4 Dec 2011 07:10:40 +0000 (UTC) From: "Daniel Dai (Resolved) (JIRA)" To: pig-dev@hadoop.apache.org Message-ID: <1413122715.38221.1322982640271.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <1909846991.5397.1322035540401.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Resolved] (PIG-2385) Store statements not getting processed 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/PIG-2385?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Daniel Dai resolved PIG-2385. ----------------------------- Resolution: Fixed Hadoop Flags: Reviewed Unit tests pass. test-patch: [exec] -1 overall. [exec] [exec] +1 @author. The patch does not contain any @author tags. [exec] [exec] +1 tests included. The patch appears to include 3 new or modified tests. [exec] [exec] +1 javadoc. The javadoc tool did not generate any warning messages. [exec] [exec] +1 javac. The applied patch does not increase the total number of javac compiler warnings. [exec] [exec] +1 findbugs. The patch does not introduce any new Findbugs warnings. [exec] [exec] -1 release audit. The applied patch generated 463 release audit warnings (more than the trunk's current 456 warnings). No new file added, ignore release audit warning. Patch committed to trunk/0.10/0.11 > Store statements not getting processed > -------------------------------------- > > Key: PIG-2385 > URL: https://issues.apache.org/jira/browse/PIG-2385 > Project: Pig > Issue Type: Bug > Affects Versions: 0.9.1 > Reporter: Vivek Padmanabhan > Assignee: Daniel Dai > Priority: Critical > Fix For: 0.9.2 > > Attachments: PIG-2385-0.patch, PIG-2385-1.patch > > > The actual script in which we got this issue is pretty big and complex. The script has total 4 STORE statements and one of the STORE statement is not getting executed. > The script executes 3 sets of jobs (excluding one STORE which is not getting executed) consisting of 10, 11 and 19 jobs. > The below script could be used to illustrate the issue but with Multiquery turned off; > {code} > A = LOAD 'input1' as (f1:chararray,f2:chararray,f3:chararray); > Z = group A all; > Z1 = foreach Z generate COUNT(A) as count; > B = foreach A generate f1,f2,f3,(100-Z1.count) as diff; > C = order B by diff; > STORE C INTO 'output/C_out'; > D = DISTINCT C ; > store D into 'output/F_out'; > {code} > For this script, if run with Multiquery turned off, the Store command for D is not getting executed. > I can see that the statements are getting parsed and LOStore created for D , but still, it is not getting executed. > The above script works fine with Pig 0.8.(This issue still exists in Trunk as well) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira