You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pig.apache.org by "Timothy Chen (JIRA)" <ji...@apache.org> on 2012/10/04 20:41:47 UTC

[jira] [Commented] (PIG-2769) a simple logic causes very long compiling time on pig 0.10.0

    [ https://issues.apache.org/jira/browse/PIG-2769?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13469587#comment-13469587 ] 

Timothy Chen commented on PIG-2769:
-----------------------------------

I'd like to look at this for my first bug fix for pig, as I've already glanced through the parsing and query plan code. Can't find a way to assign this to myself via Jira though, probably need someone else to do so?
                
> a simple logic causes very long compiling time on pig 0.10.0
> ------------------------------------------------------------
>
>                 Key: PIG-2769
>                 URL: https://issues.apache.org/jira/browse/PIG-2769
>             Project: Pig
>          Issue Type: Bug
>          Components: build
>    Affects Versions: 0.10.0
>         Environment: Apache Pig version 0.10.0-SNAPSHOT (rexported)
>            Reporter: Dan Li
>             Fix For: 0.11
>
>         Attachments: case1.tar
>
>
> We found the following simple logic will cause very long compiling time for pig 0.10.0, while using pig 0.8.1, everything is fine.
> A = load 'A.txt' using PigStorage()  AS (m: int);
> B = FOREACH A {
>     days_str = (chararray)
>         (m == 1 ? 31: 
>         (m == 2 ? 28: 
>         (m == 3 ? 31: 
>         (m == 4 ? 30: 
>         (m == 5 ? 31: 
>         (m == 6 ? 30: 
>         (m == 7 ? 31: 
>         (m == 8 ? 31: 
>         (m == 9 ? 30: 
>         (m == 10 ? 31: 
>         (m == 11 ? 30:31)))))))))));
> GENERATE
>    days_str as days_str;
> }   
> store B into 'B';
> and here's a simple input file example: A.txt
> 1
> 2
> 3
> The pig version we used in the test
> Apache Pig version 0.10.0-SNAPSHOT (rexported)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira