[
https://issues.apache.org/jira/browse/PIG-197?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Amir Youssefi updated PIG-197:
------------------------------
Description:
Storing a file in bzip2 doesn't work. It stores output in regular plain text in
following examples:
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';
--
pig -version
Apache Pig version 0.1.0-dev (r6455)
compiled Apr 03 2008, 16:10:08
was:
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';
> 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. It stores output in regular plain text
> in following examples:
> 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';
> --
> pig -version
> Apache Pig version 0.1.0-dev (r6455)
> compiled Apr 03 2008, 16:10:08
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.