bz2 doesn't work
----------------

                 Key: PIG-197
                 URL: https://issues.apache.org/jira/browse/PIG-197
             Project: Pig
          Issue Type: Bug
            Reporter: Amir Youssefi


Storing a file in bzip2 doesn't work. Example:

a = load 'any_input'; -- use any sample input
store a into 'any_output.bz2';

or  to have reducer/combiner

a = load 'any_input';
b = group a all parallel 1;
c = foreach b generate group, COUNT(a);
store c into 'any_output.bz2';


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

Reply via email to