How to use hasoop fs -getmerge to load .deflate files?

I tried to work

hadoop fs -getmerge 

in the directory .deflate files. The result is a compressed file on my local machine.

What is the easiest way to download the entire directory in uncompressed format to my local computer?

+5
source share
1 answer

Try the following:

hadoop fs -text /some/where/job-output/part-* 
+5
source

All Articles