My MR job is acquired as follows :
Job job = new Job(conf, "helloWorld");
Any values set on the conf
are available across the nodes. But I'm not sure whether the following will work or not :
in MAP
conf.set("hello", "world");
in Driver
if( job.waitForCompletion(true) ){
System.out.println(conf.get("hello"));
}
Will the modifications made to conf
during map/reduce phase be visible in the driver ?