mxm commented on a change in pull request #11558:
URL: https://github.com/apache/beam/pull/11558#discussion_r420655324
##########
File path:
runners/flink/src/main/java/org/apache/beam/runners/flink/translation/wrappers/streaming/DoFnOperator.java
##########
@@ -455,6 +461,18 @@ public void open() throws Exception {
if (!options.getDisableMetrics()) {
flinkMetricContainer = new FlinkMetricContainer(getRuntimeContext());
doFnRunner = new DoFnRunnerWithMetricsUpdate<>(stepName, doFnRunner,
flinkMetricContainer);
+ String checkpointMetricNamespace =
Review comment:
I thought about that. The checkpointing metrics are kept at the
JobManager. They are not accessible by the operator. So in order not to change
the logic of the load tests which relies on the metrics accumulated during the
job, returned in the PipelineResult, I opted to go this route.
I think we may have to change the Beam service to allow querying job metrics
during job runtime. At the moment, we can only retrieve them at the end of the
job.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]