org.apache.hadoop.mapred.lib
Class MultipleInputs
java.lang.Object
  
org.apache.hadoop.mapred.lib.MultipleInputs
@InterfaceAudience.Public
@InterfaceStability.Stable
public class MultipleInputs
- extends Object
 
This class supports MapReduce jobs that have multiple input paths with
 a different InputFormat and Mapper for each path
 
 
| Methods inherited from class java.lang.Object | 
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
 
MultipleInputs
public MultipleInputs()
addInputPath
public static void addInputPath(JobConf conf,
                                Path path,
                                Class<? extends InputFormat> inputFormatClass)
- Add a 
Path with a custom InputFormat to the list of
 inputs for the map-reduce job.
- Parameters:
 conf - The configuration of the jobpath - Path to be added to the list of inputs for the jobinputFormatClass - InputFormat class to use for this path
 
 
addInputPath
public static void addInputPath(JobConf conf,
                                Path path,
                                Class<? extends InputFormat> inputFormatClass,
                                Class<? extends Mapper> mapperClass)
- Add a 
Path with a custom InputFormat and
 Mapper to the list of inputs for the map-reduce job.
- Parameters:
 conf - The configuration of the jobpath - Path to be added to the list of inputs for the jobinputFormatClass - InputFormat class to use for this pathmapperClass - Mapper class to use for this path
 
 
Copyright © 2014 Apache Software Foundation. All Rights Reserved.