You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pig.apache.org by "Arun C Murthy (JIRA)" <ji...@apache.org> on 2008/05/05 21:15:55 UTC

[jira] Commented: (PIG-230) auto ship broken is presence of define for another streaming operator.

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

Arun C Murthy commented on PIG-230:
-----------------------------------

Olga, was PigStreaming.pl on the PATH? Thanks.

> auto ship broken is presence of define for another streaming operator.
> ----------------------------------------------------------------------
>
>                 Key: PIG-230
>                 URL: https://issues.apache.org/jira/browse/PIG-230
>             Project: Pig
>          Issue Type: Bug
>            Reporter: Olga Natkovich
>            Assignee: Arun C Murthy
>
> The following works:
> A = load 'studenttab10k';
> B = foreach A generate $0, $1, $2;
> C = stream B through `perl PigStreaming.pl`;
> store C into 'out';
> But this one causes an error: Can't open perl script "PigStreaming.pl": No such file or directory.
> define CMD `perl PigStreamingDep.pl` input(stdin using PigDump) ship(':SCRIPTHOMEPATH:/PigStreamingDep.pl', ':SCRIPTHOMEPATH:/PigStreamingModule.pm');
> A = load 'studenttab10k';
> B = stream A through `perl PigStreaming.pl`;
> C = stream B through CMD as (name, age, gpa);
> D = foreach C generate name, age;
> store D into 'out';#,

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