Hi,all My program just wants to collect the results of the map outputs,to save the time,can I just use Mapper Class without Reducer Class? Is it like this?
job.setMapperClass(MyMapper.class); //other configurations,but without job.setReducerClass(); JobClient.runJob(job); How can I implement it?Thank you .