I'm running a hadoop job ( from oozie ) that has few counters, and multioutput.
I get error like: org.apache.hadoop.mapreduce.counters.LimitExceededException: Too many counters: 121 max=120
Then I removed all the code that has counters, and also set mout.setCountersEnabled to false. And also set the max counters to 240 in hadoop config.
Now I still get the same error org.apache.hadoop.mapreduce.counters.LimitExceededException: Too many counters: 241 max=240
How can I solve this problem? Is there any possibility that any hidden counters exists? How can I make clear what counters there before exceeds 240 ? (The process looks like stopped before I can print anything? )
Thanks, Xinsong