You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pig.apache.org by "Koji Noguchi (Jira)" <ji...@apache.org> on 2020/08/12 19:30:00 UTC

[jira] [Commented] (PIG-5403) streaming job stuck with script failure when combined with ORDER BY

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

Koji Noguchi commented on PIG-5403:
-----------------------------------

Fix is also similar to PIG-5198 where Sampler code was not checking for {{POStatus.STATUS_ERR}} return value. Attached {{pig-5403-v01.patch}}.

> streaming job stuck with script failure when combined with ORDER BY
> -------------------------------------------------------------------
>
>                 Key: PIG-5403
>                 URL: https://issues.apache.org/jira/browse/PIG-5403
>             Project: Pig
>          Issue Type: Bug
>          Components: tez
>            Reporter: Koji Noguchi
>            Assignee: Koji Noguchi
>            Priority: Minor
>         Attachments: pig-5403-v01.patch
>
>
> This is similar to PIG-5198, following code never fails and hangs until hitting timeouts.
> {code}
> define BADCMD `perl PigStreamingBad.pl start` ship('./PigStreamingBad.pl');
> A = LOAD './studenttab10k' as (name:chararray, age:chararray, gpa:chararray);
> B = stream A THROUGH BADCMD;
> C = ORDER B by *;
> STORE C into '/tmp/deleteme';
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)