ajanuskevicius
11/2/2016 - 12:22 PM

MapReduce - Reduce class

MapReduce - Reduce class

package com.company;

import org.apache.hadoop.io.IntWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Reducer;

import java.io.IOException;

public class Reduce extends Reducer<Text, IntWritable,Text,IntWritable> {
    @Override
    public void reduce(Text key, Iterable<IntWritable> values, Context context)
            throws IOException, InterruptedException {
        int count = 0;
        for (IntWritable value:values) {
            count += value.get();
        }
        context.write(key, new IntWritable(count));
    }
}