java—如何从hama BSP作业获取存储在计数器中的结果?

rt4zxlrg  于 2021-06-03  发布在  Hadoop
关注(0)|答案(0)|浏览(241)

与hadoopmapreduce类似,hama也有计数器,如本文所述。
在hadoop mapreduce中,使用getcounters()函数检索计数器的值如下所示:

long value = job.getCounters().findCounter(SomeEnumClass.PROPERTY).getValue();

然而,在哈马的职业课上,它却没有这样一个机会 getCounters() 功能。

cannot find symbol
symbol  : method getCounters()
location: class org.apache.hama.bsp.BSPJob
      long value = bsp.getCounters().findCounter(
                         ^
1 error

所以我的问题是:在hama bsp作业完成之后,如何从计数器中检索值?
谢谢您,

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题