org.apache.hadoop.mapred.join
Interface ComposableInputFormat<K extends WritableComparable,V extends Writable>
- All Superinterfaces: 
 - InputFormat<K,V>
 
- All Known Implementing Classes: 
 - CompositeInputFormat, Parser.Node
 
public interface ComposableInputFormat<K extends WritableComparable,V extends Writable>
- extends InputFormat<K,V>
 
Refinement of InputFormat requiring implementors to provide
 ComposableRecordReader instead of RecordReader.
 
 
getRecordReader
ComposableRecordReader<K,V> getRecordReader(InputSplit split,
                                            JobConf job,
                                            Reporter reporter)
                                                                                        throws IOException
- Description copied from interface: 
InputFormat 
- Get the 
RecordReader for the given InputSplit.
 It is the responsibility of the RecordReader to respect
 record boundaries while processing the logical split to present a 
 record-oriented view to the individual task.
- Specified by:
 getRecordReader in interface InputFormat<K extends WritableComparable,V extends Writable>
 
- Parameters:
 split - the InputSplitjob - the job that this split belongs to
- Returns:
 - a 
RecordReader
 - Throws:
 IOException
 
 
Copyright © 2008 The Apache Software Foundation