All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infinispan.hadoop.sample.ReduceClass Maven / Gradle / Ivy

There is a newer version: 0.4
Show newest version
package org.infinispan.hadoop.sample;

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

import java.io.IOException;

public class ReduceClass extends Reducer {

   @Override
   protected void reduce(Text key, Iterable values, Context context) throws IOException, InterruptedException {
      int sum = 0;
      for (IntWritable val : values) {
         sum += val.get();
      }
      context.write(key, new IntWritable(sum));
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy