Description
This typo can be found on: http://accumulo.apache.org/1.4/user_manual/Analytics.html (also applies to older versions of manual)
The reduce function signature is incorrect. Instead of:
public void reduce(WritableComparable key, Iterator<Text> values, Context c)
It should be:
public void reduce(WritableComparable key, Iterable<Text> values, Context c)