16

I got some pig generated files with part-r-00000.deflate extension. I know this is a compressed file. How do I generate a normal file in a readable format. When I used hadoop fs -text, I cannot get plaintext output. The output is still binary. How can I fix this problem?

0

2 Answers 2

20

You might be using a quite old Hadoop version (e.g: 0.20.0) in which fs -text can't inflate the compressed file.

As a workaround you may try this one-liner (based on this answer):

hadoop fs -text file.deflate | perl -MCompress::Zlib -e 'undef $/; print uncompress(<>)'
0
17

you can decompress on the fly by using this command

hdfs dfs -text file.deflate | hdfs dfs -put - uncompressed_destination_file

Not the answer you're looking for? Browse other questions tagged or ask your own question.