Example usage for Java org.apache.hadoop.mapred FileInputFormat fields, constructors, methods, implement or subclass
The text is from its open source code.
void | addInputPath(JobConf conf, Path path) Add a Path to the list of inputs for the map-reduce job. |
void | addInputPaths(JobConf conf, String commaSeparatedPaths) Add the given comma separated paths to the list of inputs for the map-reduce job. |
Path[] | getInputPaths(JobConf conf) Get the list of input Path s for the map-reduce job. |
RecordReader | getRecordReader(InputSplit split, JobConf job, Reporter reporter) |
InputSplit[] | getSplits(JobConf job, int numSplits) Splits files returned by #listStatus(JobConf) when they're too big. |
void | setInputPathFilter(JobConf conf, Class extends PathFilter> filter) Set a PathFilter to be applied to the input paths for the map-reduce job. |
void | setInputPaths(JobConf conf, String commaSeparatedPaths) Sets the given comma separated paths as the list of inputs for the map-reduce job. |
void | setInputPaths(JobConf conf, Path... inputPaths) Set the array of Path s as the list of inputs for the map-reduce job. |