Re: How to retrieve and display the values aggregated by the aggregators?

2013-07-31 Thread Claudio Martella
Hi Kyle, good catch. ALWAYS should be set to 1. Want to write a patch to fix this? Try to set the property on the command line by putting -D giraph.textAggregatorWriter.frequency=-1 right after the GiraphRunner class in your command line. Hope this helps. Best, Claudio On Wed, Jul 24, 2013 at

Re: How to retrieve and display the values aggregated by the aggregators?

2013-07-31 Thread Kyle Orlando
Will do, I just need to figure out how to submit the patch exactly, as well as having some extra time. And that worked, actually. I'd already figured it out without realizing it; the text file with the aggregator values was created, it was just placed somewhere on my HDFS that I wasn't expecting.

How to retrieve and display the values aggregated by the aggregators?

2013-07-24 Thread Kyle Orlando
Hello, I am new to Giraph and was just wondering how one could retrieve and display the certain global values/statistics that the aggregators keep track of. What classes and methods would I use, and would this be done in a class that extends VertexOutputFormat, or would it be done elsewhere? As

Re: How to retrieve and display the values aggregated by the aggregators?

2013-07-24 Thread Kyle Orlando
Hi Claudio, So I checked out TextAggregatorWriter and was, initially, still a bit confused on how to use it to write to a text file. That's when I noticed that, in org.apache.giraph.utils.ConfigurationUtils, there is an option aw, which corresponds to an AggregatorWriterClass. I tried this out