Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public static void main(String[] args) throws Exception {
job.setOutputValueClass(LongWritable.class);

FileInputFormat.addInputPath(job, new Path("/data/mr/wordcount/input/big.txt"));
FileOutputFormat.setOutputPath(job, new Path("javamrout"));
FileOutputFormat.setOutputPath(job, new Path("javamrout_demo"));

//To avoid hardcoding, you can take the values from command line args
// FileInputFormat.addInputPath(job, new Path(args[1]));
Expand Down