Hi!
I'm writing a mapreduce job where I want the output from the mapper to go
strait
to the HDFS without passing the reduce method. Have been told that I can do:
c.setOutputFormat(TextOutputFormat.class); also added
Path path = new Path("user");
FileOutputFormat.setOutputPath(c, path);

But I still ended up with the result in the local filesystem instead.

Regards Erik

Reply via email to