Uses of Class
p2pMapReduce.mapreduceModule.input.InputSplit

Packages that use InputSplit
p2pMapReduce.mapreduceModule Collection of class to implement a map reduce framework. 
p2pMapReduce.mapreduceModule.input   
p2pMapReduce.test.mapreduceModule.local   
 

Uses of InputSplit in p2pMapReduce.mapreduceModule
 

Methods in p2pMapReduce.mapreduceModule that return InputSplit
 InputSplit MapContext.getInputSplit()
          Get the input split for this map.
 InputSplit MapContextImpl.getInputSplit()
          Get the input split for this map.
 InputSplit WrappedMapper.Context.getInputSplit()
          Get the input split for this map.
 

Constructors in p2pMapReduce.mapreduceModule with parameters of type InputSplit
MapContextImpl(Configuration conf, TaskAttemptID taskid, RecordReader<KEYIN,VALUEIN> reader, RecordWriter<KEYOUT,VALUEOUT> writer, OutputCommitter committer, StatusReporter reporter, InputSplit split)
           
 

Uses of InputSplit in p2pMapReduce.mapreduceModule.input
 

Subclasses of InputSplit in p2pMapReduce.mapreduceModule.input
 class TextFileInputSplit
           
 class TextFileInputSplit_old
           
 

Methods in p2pMapReduce.mapreduceModule.input that return types with arguments of type InputSplit
abstract  java.util.List<InputSplit> InputFormat.getSplits(JobContext context)
          Logically split the set of input files for the job.
 java.util.List<InputSplit> TextFileInputFormat.getSplits(JobContext jobContext)
           
 

Methods in p2pMapReduce.mapreduceModule.input with parameters of type InputSplit
abstract  RecordReader<K,V> InputFormat.createRecordReader(InputSplit split, TaskAttemptContext context)
          Create a record reader for a given split.
 RecordReader<java.lang.Long,java.lang.String> TextFileInputFormat.createRecordReader(InputSplit split, TaskAttemptContext context)
           
 void LineRecordReader.initialize(InputSplit split, TaskAttemptContext context)
           
abstract  void RecordReader.initialize(InputSplit split, TaskAttemptContext context)
          Called once at initialization.
 

Uses of InputSplit in p2pMapReduce.test.mapreduceModule.local
 

Constructors in p2pMapReduce.test.mapreduceModule.local with parameters of type InputSplit
ThreadedMapper(TaskAttemptID taskAttID, JobContext jobContext, InputSplit inputSplit, java.util.concurrent.CyclicBarrier cb)