> > > MultipleInputs.addInputPath(JobConf conf, Path path, Class<? extends > InputFormat> inputFormatClass, Class<? extends Mapper> mapperClass) > to add the mappers and my I/P format. Right, and then you can use DelegatingInputFormat and DelegatingMapper. > > And use MultipleOutputs class to configure the O/P from the mappers. > IF this is right where do i add the multiple implementations for the > reducers in the JobConf?? Unlike mappers, multiple reducers can't be set. Multiple mappers are set based on different input paths, however same doesn't hold for reducers.
- Sharad