オペレータのnumRecordsInをFlinkに表示したいのですが、これはデータ職人のpptにhereで従っています。カウンターのためのコードは、問題はどのように私はnumber_of_Records_In示ししたいオペレータを指定しないことですFlinkでカウンタを使用してnumOfRecordsInを取得する
public static class mapper extends RichMapFunction<String,String>{
public Counter counter;
@Override
public void open(Configuration parameters) throws Exception {
super.open(parameters);
this.counter = getRuntimeContext()
.getMetricGroup()
.counter("numRecordsIn");
}
@Override
public String map(String s) throws Exception {
counter.inc();
System.out.println("counter val " + counter.toString());
return null;
}
}
の下に与えられていますか?
ありがとう –