1

After running a sqoop jobs I got the files .deflate extension (compression is configured by default). I know that I can show the file content using following command:

hadoop fs -text  <file>

How can I copy this result to my local folder?

1 Answer 1

8

Just redirect output to some local file

hadoop fs -text hdfs_path > local_file.txt
0

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