Uses of Interface
org.apache.hadoop.mapred.Reducer

Packages that use Reducer
org.apache.hadoop.contrib.index.mapred   
org.apache.hadoop.contrib.utils.join   
org.apache.hadoop.mapred A software framework for easily writing applications which process vast amounts of data (multi-terabyte data-sets) parallelly on large clusters (thousands of nodes) built of commodity hardware in a reliable, fault-tolerant manner. 
org.apache.hadoop.mapred.lib Library of generally useful mappers, reducers, and partitioners. 
org.apache.hadoop.mapred.lib.aggregate Classes for performing various counting and aggregations. 
org.apache.hadoop.streaming Hadoop Streaming is a utility which allows users to create and run Map-Reduce jobs with any executables (e.g. 
 

Uses of Reducer in org.apache.hadoop.contrib.index.mapred
 

Classes in org.apache.hadoop.contrib.index.mapred that implement Reducer
 class IndexUpdateCombiner
          This combiner combines multiple intermediate forms into one intermediate form.
 class IndexUpdateReducer
          This reducer applies to a shard the changes for it.
 

Uses of Reducer in org.apache.hadoop.contrib.utils.join
 

Classes in org.apache.hadoop.contrib.utils.join that implement Reducer
 class DataJoinMapperBase
          This abstract class serves as the base class for the mapper class of a data join job.
 class DataJoinReducerBase
          This abstract class serves as the base class for the reducer class of a data join job.
 class JobBase
          A common base implementing some statics collecting mechanisms that are commonly used in a typical map/reduce job.
 

Uses of Reducer in org.apache.hadoop.mapred
 

Methods in org.apache.hadoop.mapred that return types with arguments of type Reducer
 Class<? extends Reducer> JobConf.getCombinerClass()
          Deprecated. Get the user-defined combiner class used to combine map-outputs before being sent to the reducers.
 Class<? extends Reducer> JobConf.getReducerClass()
          Deprecated. Get the Reducer class for the job.
 

Method parameters in org.apache.hadoop.mapred with type arguments of type Reducer
 void JobConf.setCombinerClass(Class<? extends Reducer> theClass)
          Deprecated. Set the user-defined combiner class used to combine map-outputs before being sent to the reducers.
 void JobConf.setReducerClass(Class<? extends Reducer> theClass)
          Deprecated. Set the Reducer class for the job.
 

Uses of Reducer in org.apache.hadoop.mapred.lib
 

Classes in org.apache.hadoop.mapred.lib that implement Reducer
 class ChainReducer
          Deprecated. Use ChainReducer instead
 class FieldSelectionMapReduce<K,V>
          Deprecated. Use FieldSelectionMapper and FieldSelectionReducer instead
 class IdentityReducer<K,V>
          Deprecated. Use Reducer instead.
 class LongSumReducer<K>
          Deprecated. Use LongSumReducer instead.
 

Method parameters in org.apache.hadoop.mapred.lib with type arguments of type Reducer
static
<K1,V1,K2,V2>
void
ChainReducer.setReducer(JobConf job, Class<? extends Reducer<K1,V1,K2,V2>> klass, Class<? extends K1> inputKeyClass, Class<? extends V1> inputValueClass, Class<? extends K2> outputKeyClass, Class<? extends V2> outputValueClass, boolean byValue, JobConf reducerConf)
          Deprecated. Sets the Reducer class to the chain job's JobConf.
 

Uses of Reducer in org.apache.hadoop.mapred.lib.aggregate
 

Classes in org.apache.hadoop.mapred.lib.aggregate that implement Reducer
 class ValueAggregatorCombiner<K1 extends WritableComparable,V1 extends Writable>
          Deprecated. Use ValueAggregatorCombiner instead
 class ValueAggregatorJobBase<K1 extends WritableComparable,V1 extends Writable>
          Deprecated. Use ValueAggregatorJobBase instead
 class ValueAggregatorMapper<K1 extends WritableComparable,V1 extends Writable>
          Deprecated. Use ValueAggregatorMapper instead
 class ValueAggregatorReducer<K1 extends WritableComparable,V1 extends Writable>
          Deprecated. Use ValueAggregatorReducer instead
 

Uses of Reducer in org.apache.hadoop.streaming
 

Classes in org.apache.hadoop.streaming that implement Reducer
 class PipeCombiner
           
 class PipeReducer
          A generic Reducer bridge.
 



Copyright © 2009 The Apache Software Foundation