Koji Noguchi created PIG-5198:
---------------------------------
Summary: streaming job stuck with script failure when combined
with split
Key: PIG-5198
URL: https://issues.apache.org/jira/browse/PIG-5198
Project: Pig
Issue Type: Bug
Components: impl
Reporter: Koji Noguchi
Assignee: Koji Noguchi
Priority: Minor
{code:title=test.pig}
DEFINE myawk `./test.awk` ship('./test.awk');
DEFINE mypy `python my.py` ship ('./my.py');
A = load 'input.txt';
B = stream A through myawk ;
BB = stream A through mypy ;
store B into '$output/abc';
store BB into '$output/bcd';
{code}
This script would hang when my.py fails with syntax error.
(input.txt has to large)
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)