Is this documented behavior or current impl detail ?
A lot of scripts broke when multi-query optimization was committed to
trunk because of the implicit ordering assumption (based on STORE) in
earlier pig - which was, iirc, documented.
Regards,
Mridul
On Thursday 11 February 2010 10:52 PM, Dmitriy Ryaboy wrote:
EXEC will trigger execution of the code that precedes it.
On Thu, Feb 11, 2010 at 9:12 AM, prasenjit mukherjee
<[email protected]> wrote:
Is there any way I can have a pig statement wait for a condition.This
is what I am trying to do : I am first creating and storing a
relation in pig, and then I want to upload that relation via
STREAM/DEFINE command. Here is the pig script I am tryign to write :
.........
STORE r1 INTO 'myoutput.data'
STREAM 'myfile_containing_output_dat.txt' THRUGH `upload.py`
Any way I can acheive this ?
-Prasen