Example usage for org.apache.hadoop.mapreduce Reducer subclass-usage

List of usage examples for org.apache.hadoop.mapreduce Reducer subclass-usage

Introduction

In this page you can find the example usage for org.apache.hadoop.mapreduce Reducer subclass-usage.

Usage

From source file com.ifeng.vdn.logparser.mapper.VideoLogReducer.java

/**
 * @version 0.1
 *
 * @author Hefei Li
 *
 * @since Mar 16, 2015

From source file com.ifeng.vdn.parser.VideoLogParseReducer.java

/**
 * @version 0.1
 *
 * @author Hefei Li
 *
 * @since  May 25, 2015

From source file com.ifeng.vdn.videolog.VideologGroupReducer.java

/**
 * @version 0.1
 *
 * @author Hefei Li
 *
 * @since Mar 16, 2015

From source file com.impetus.code.examples.hadoop.mapred.earthquake.EarthQuakeReducer.java

/**
 * <Prove description of functionality provided by this Type>
 * 
 * @author amresh.singh
 */
public class EarthQuakeReducer extends Reducer<Text, IntWritable, Text, IntWritable> {

From source file com.impetus.code.examples.hadoop.mapred.weather.MaxTempReducer.java

/**
 * <Prove description of functionality provided by this Type>
 * 
 * @author amresh.singh
 */
public class MaxTempReducer extends Reducer<Text, IntWritable, Text, IntWritable> {

From source file com.j.distributed.counter.CounterReducer.java

/**
 *
 * @author jonatan
 */
public class CounterReducer extends Reducer<Text, IntWritable, Text, IntWritable> {

From source file com.j.distributed.sorter.SorterReducer.java

/**
 *
 * @author jonatan
 */
public class SorterReducer extends Reducer<LongWritable, Text, LongWritable, Text> {

From source file com.javiertordable.mrif.FindSquaresReducer.java

/**
 * The FindSquaresReducer performs the second step in the quadratic sieve
 * algorithm, finding a subset of the factors obtained after the sieve whose
 * product is a square, and using that to attempt the factorization of N.
 *
 * In order to find this square we obtain the decomposition into primes of

From source file com.jeffy.mr.WordCountReducer.java

/**
 * @author Jeffy<renwu58@gmail.com>
 *
 */
public class WordCountReducer extends Reducer<Text, IntWritable, Text, IntWritable> {
    private final IntWritable results = new IntWritable(0);

From source file com.jhkt.playgroundArena.hadoop.tasks.jobs.combiner.AverageCombiner.java

/**
 * @author Ji Hoon Kim
 */
public final class AverageCombiner extends Reducer<Text, AverageWritable, Text, AverageWritable> {

    private AverageWritable aWritable = new AverageWritable();