我正在尝试在 Flink 中添加一个计数器,如此处所述,但问题是 counter.inc() 返回的是 void 而不是 Integer。我的指标代码如下
private static class myMetric extends RichMapFunction<String,Integer> {
private Counter counter ;
@Override
public void open(Configuration parameters) throws Exception {
super.open(parameters);
this.getRuntimeContext().
getMetricGroup().
counter("countit");
}
@Override
public Integer map(String s) throws Exception {
return this.counter.inc();
}
}