Uses of Class
p2pMapReduce.mapreduceModule.OutputCommitter

Packages that use OutputCommitter
p2pMapReduce.entity   
p2pMapReduce.mapreduceModule Collection of class to implement a map reduce framework. 
p2pMapReduce.mapreduceModule.output   
 

Uses of OutputCommitter in p2pMapReduce.entity
 

Methods in p2pMapReduce.entity with parameters of type OutputCommitter
protected static
<INKEY,INVALUE,OUTKEY,OUTVALUE>
Reducer.Context
ReduceTaskRunner.createReduceContext(Reducer<INKEY,INVALUE,OUTKEY,OUTVALUE> reducer, Configuration job, TaskAttemptID taskId, java.lang.String partitionFile, Counter inputKeyCounter, Counter inputValueCounter, RecordWriter<OUTKEY,OUTVALUE> output, OutputCommitter committer, StatusReporter reporter, RawComparator<INKEY> comparator, java.lang.Class<INKEY> keyClass, java.lang.Class<INVALUE> valueClass)
           
 

Uses of OutputCommitter in p2pMapReduce.mapreduceModule
 

Methods in p2pMapReduce.mapreduceModule that return OutputCommitter
 OutputCommitter JobConf.getOutputCommitter()
          Get the OutputCommitter implementation for the map-reduce job, defaults to FileOutputCommitter if not specified explicitly.
 OutputCommitter TaskInputOutputContext.getOutputCommitter()
          Get the OutputCommitter for the task-attempt.
 OutputCommitter TaskInputOutputContextImpl.getOutputCommitter()
           
 OutputCommitter WrappedMapper.Context.getOutputCommitter()
           
 OutputCommitter WrappedReducer.Context.getOutputCommitter()
           
 

Method parameters in p2pMapReduce.mapreduceModule with type arguments of type OutputCommitter
 void JobConf.setOutputCommitter(java.lang.Class<? extends OutputCommitter> theClass)
          Set the OutputCommitter implementation for the map-reduce job.
 

Constructors in p2pMapReduce.mapreduceModule with parameters of type OutputCommitter
MapContextImpl(Configuration conf, TaskAttemptID taskid, RecordReader<KEYIN,VALUEIN> reader, RecordWriter<KEYOUT,VALUEOUT> writer, OutputCommitter committer, StatusReporter reporter, InputSplit split)
           
ReduceContextImpl(Configuration conf, TaskAttemptID taskid, java.lang.String partitionFile, RecordWriter<KEYOUT,VALUEOUT> output, OutputCommitter committer, StatusReporter reporter, java.lang.Class<KEYIN> keyClass, java.lang.Class<VALUEIN> valueClass)
           
TaskInputOutputContextImpl(Configuration conf, TaskAttemptID taskid, RecordWriter<KEYOUT,VALUEOUT> output, OutputCommitter committer, StatusReporter reporter)
           
 

Uses of OutputCommitter in p2pMapReduce.mapreduceModule.output
 

Methods in p2pMapReduce.mapreduceModule.output that return OutputCommitter
abstract  OutputCommitter OutputFormat.getOutputCommitter(TaskAttemptContext context)
          Get the output committer for this output format.
 OutputCommitter TextFileOutputFormat.getOutputCommitter(TaskAttemptContext context)