Created 09-02-2016 02:39 PM
I executed a MapReduce project successfully and I distinguished the result in part-00000 file in an output folder created during the project. I would like now to copy the contents of part-00000 file that I visualized in the terminal with the "hadoop fs -cat output / part-00000" command in another folder located locally. What should I do??
Created 09-03-2016 01:29 AM
Do you just mean you want to copy that file to your local machine? hdfs dfs -get [file]
Created 09-03-2016 01:29 AM
Do you just mean you want to copy that file to your local machine? hdfs dfs -get [file]
Created 09-03-2016 05:12 AM
Yes, exactly, I mean this. I would like to copy the file result in my local machine.