Re: Reporter - incrCounter

2009-07-08 Thread jason hadoop
At least in 0.19, the incrCounter method on the Counter object is a synchronized method. Counters.java: public synchronized void incrCounter(Enum key, long amount) { I believe there are some issues in 18 and 19 that cause some jitter in the counter values while the job is running, If you are usi

Reporter - incrCounter

2009-07-07 Thread Sagar Naik
public void incrCounter(Enum key, long amount) I am using a multi-threaded Mapper. I m not sure, but should this be synchronized ? I log the counter call incrCounter. log stmt counters are fine and Reporter counters are not matching m i missing something ? -Sagar