Uses of Class
org.apache.hadoop.mapreduce.Reducer
Packages that use Reducer
Package
Description
-
Uses of Reducer in org.apache.hadoop.mapreduce
Methods in org.apache.hadoop.mapreduce that return types with arguments of type ReducerModifier and TypeMethodDescriptionJobContext.getCombinerClass()Get the combiner class for the job.JobContext.getReducerClass()Get theReducerclass for the job.Method parameters in org.apache.hadoop.mapreduce with type arguments of type ReducerModifier and TypeMethodDescriptionvoidJob.setCombinerClass(Class<? extends Reducer> cls) Set the combiner class for the job.voidJob.setReducerClass(Class<? extends Reducer> cls) Set theReducerfor the job. -
Uses of Reducer in org.apache.hadoop.mapreduce.lib.aggregate
Subclasses of Reducer in org.apache.hadoop.mapreduce.lib.aggregateModifier and TypeClassDescriptionclassValueAggregatorCombiner<K1 extends WritableComparable<?>,V1 extends Writable> This class implements the generic combiner of Aggregate.classValueAggregatorReducer<K1 extends WritableComparable<?>,V1 extends Writable> This class implements the generic reducer of Aggregate. -
Uses of Reducer in org.apache.hadoop.mapreduce.lib.chain
Subclasses of Reducer in org.apache.hadoop.mapreduce.lib.chainModifier and TypeClassDescriptionclassChainReducer<KEYIN,VALUEIN, KEYOUT, VALUEOUT> The ChainReducer class allows to chain multiple Mapper classes after a Reducer within the Reducer task.Method parameters in org.apache.hadoop.mapreduce.lib.chain with type arguments of type ReducerModifier and TypeMethodDescriptionstatic voidChainReducer.setReducer(Job job, Class<? extends Reducer> klass, Class<?> inputKeyClass, Class<?> inputValueClass, Class<?> outputKeyClass, Class<?> outputValueClass, Configuration reducerConf) Sets theReducerclass to the chain job. -
Uses of Reducer in org.apache.hadoop.mapreduce.lib.fieldsel
Subclasses of Reducer in org.apache.hadoop.mapreduce.lib.fieldselModifier and TypeClassDescriptionclassThis class implements a reducer class that can be used to perform field selections in a manner similar to unix cut. -
Uses of Reducer in org.apache.hadoop.mapreduce.lib.reduce
Subclasses of Reducer in org.apache.hadoop.mapreduce.lib.reduceModifier and TypeClassDescriptionclassIntSumReducer<Key>classLongSumReducer<KEY>classWrappedReducer<KEYIN,VALUEIN, KEYOUT, VALUEOUT> AReducerwhich wraps a given one to allow for customReducer.Contextimplementations.