Uses of Interface
p2pMapReduce.mapreduceModule.MRJobConfig

Packages that use MRJobConfig
p2pMapReduce.mapreduceModule Collection of class to implement a map reduce framework. 
 

Uses of MRJobConfig in p2pMapReduce.mapreduceModule
 

Subinterfaces of MRJobConfig in p2pMapReduce.mapreduceModule
 interface JobContext
          A read-only view of the job that is provided to the tasks while they are running.
 interface MapContext<KEYIN,VALUEIN,KEYOUT,VALUEOUT>
          The context that is given to the Mapper.
 interface ReduceContext<KEYIN,VALUEIN,KEYOUT,VALUEOUT>
          The context passed to the Reducer.
 interface TaskAttemptContext
          The context for task attempts.
 interface TaskInputOutputContext<KEYIN,VALUEIN,KEYOUT,VALUEOUT>
          A context object that allows input and output from the task.
 

Classes in p2pMapReduce.mapreduceModule that implement MRJobConfig
 class Job
          The job submitter's view of the Job.
 class JobContextImpl
          A read-only view of the job that is provided to the tasks while they are running.
 class MapContextImpl<KEYIN,VALUEIN,KEYOUT,VALUEOUT>
          The context that is given to the Mapper.
 class Mapper.Context
          The Context passed on to the Mapper implementations.
 class ReduceContextImpl<KEYIN,VALUEIN,KEYOUT,VALUEOUT>
          NOTE: the format of intermediate result depends on MapContext#write(K,V) method that refer to RecordWriter
 class Reducer.Context
          The Context passed on to the Reducer implementations.
 class TaskAttemptContextImpl
          The context for task attempts.
 class TaskInputOutputContextImpl<KEYIN,VALUEIN,KEYOUT,VALUEOUT>
          A context object that allows input and output from the task.
 class WrappedMapper.Context
           
 class WrappedReducer.Context