与 Hadoop Mapreduce 类似,Hama 也有计数器,如此链接中所述。
在 hadoop mapreduce 中,使用getCounters()函数检索 Counter 的值非常简单:
long value = job.getCounters().findCounter(SomeEnumClass.PROPERTY).getValue();
但是,在hama 的BSPJob类中,并没有这样的getCounters()
功能。
cannot find symbol
symbol : method getCounters()
location: class org.apache.hama.bsp.BSPJob
long value = bsp.getCounters().findCounter(
^
1 error
所以我的问题是:hama BSPJob 完成后,如何从 Counter 中检索值?
谢谢,