Skip to content

Instantly share code, notes, and snippets.

@malaikannan
Created December 4, 2015 04:53
Show Gist options
  • Save malaikannan/397dba348f64377d9269 to your computer and use it in GitHub Desktop.
Save malaikannan/397dba348f64377d9269 to your computer and use it in GitHub Desktop.
public class SampleReducer extends Reducer {
public void reduce(Key key, Iterable<Value> values, Context context) {
List<Value> list = new ArrayList<Value>();
for (Value value : values)
list.add(value);
// Do something with the buffer
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment