I am running some basic examples with Giraph and I want to verify the data being read by my EdgeInputFormat
. On a classic MapReduce job I could do that using Counters and Giraph uses aggregators for this. (https://giraph.apache.org/aggregators.html)
It is said on the website that the aggregators should be registered on the master. The only code I wrote is a class that extends BasicComputation
and implements the compute() method. Can somebody point Where should I register them and how do I use them while reading the data?