Can I write Hadoop code that only has Mappers and Combiners (i.e. mini gearboxes without gearbox)?
job.setMapperClass (WordCountMapper.class);
job.setCombinerClass (WordCountReducer.class);
conf.setInt ("mapred.reduce.tasks", 0);
I tried to do this, but I always see that I have one shortcut task on the job tracking link
Running Reduce Tasks = 1
How can I remove reducers while maintaining combinators? perhaps?
source share