You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pig.apache.org by "Olga Natkovich (JIRA)" <ji...@apache.org> on 2008/05/29 02:12:44 UTC

[jira] Assigned: (PIG-248) Pig Local give wrong results

     [ https://issues.apache.org/jira/browse/PIG-248?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Olga Natkovich reassigned PIG-248:
----------------------------------

    Assignee: Pradeep Kamath

> Pig Local give wrong results
> ----------------------------
>
>                 Key: PIG-248
>                 URL: https://issues.apache.org/jira/browse/PIG-248
>             Project: Pig
>          Issue Type: Bug
>         Environment: Pig Local
>            Reporter: Amir Youssefi
>            Assignee: Pradeep Kamath
>
> Pig Local mode gives wrong results (but Pig + Hadoop give correct results) . This created issues for users who tried to debug in local mode...
> Here's my pig code:
> a = load '/homes/amiry/tmp/my_test.txt' as (c1,c2,c3);
> b = group a by c1;
> c = foreach b {
>    d = order a by c3;
>    generate d;
> }
> dump c;
> Pig + Hadoop: 
> ({(abc, http://www.sss.net, a), (abc, http://www.rrr.com, b)})
> ({(def, http://local.yahoo.com/, d), (def, http://lmn.com/, f), (def, http://xyz.com/, g)})
> Pig Local:
> ({(abc, http://www.sss.net, a), (abc, http://www.rrr.com, b)})
> ({})
> Input: 
> abc     http://www.rrr.com      b
> abc     http://www.sss.net      a
> def     http://local.yahoo.com/ d
> def     http://lmn.com/ f
> def     http://xyz.com/ g

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.