You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@giraph.apache.org by David Garcia <dg...@potomacfusion.com> on 2012/02/16 22:41:17 UTC

counter limit question

I have a job that could conceivably involve thousands of supersteps.  I know that I can adjust this in mapped-site.xml, but what are the framework's limitations for the number of counters possible?  Is there a better way to address this (I.e. Prevent giraph from using Hadoop counters for every super step)?

-David

Re: counter limit question

Posted by Avery Ching <ac...@apache.org>.
Yes, there is a way to disable the counters at runtime.

See GiraphJob:

   /** Use superstep counters? (boolean) */
   public static final String USE_SUPERSTEP_COUNTERS =
       "giraph.useSuperstepCounters";

and set to false.

Avery

On 2/16/12 1:41 PM, David Garcia wrote:
> I have a job that could conceivably involve thousands of supersteps. 
>  I know that I can adjust this in mapped-site.xml, but what are the 
> framework's limitations for the number of counters possible?  Is there 
> a better way to address this (I.e. Prevent giraph from using Hadoop 
> counters for every super step)?
>
> -David