This is an automated email from the ASF dual-hosted git repository.
thw pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git.
from fb0353e Merge pull request #10216 from y1chi/allowed_lateness
add ea2a3f6 [BEAM-8962] Report Flink metric accumulator only when
pipeline ends
new a861278 Merge pull request #10415: [BEAM-8962] Report Flink metric
accumulator only when pipeline ends
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../beam/runners/flink/FlinkPipelineOptions.java | 9 --
.../flink/metrics/FlinkMetricContainer.java | 49 +++++-----
.../runners/flink/metrics/MetricsAccumulator.java | 6 +-
.../translation/functions/FlinkDoFnFunction.java | 10 +-
.../functions/FlinkExecutableStageFunction.java | 9 +-
.../functions/FlinkStatefulDoFnFunction.java | 11 +--
.../translation/wrappers/SourceInputFormat.java | 8 +-
.../wrappers/streaming/DoFnOperator.java | 4 +-
.../streaming/io/UnboundedSourceWrapper.java | 9 +-
.../runners/flink/FlinkPipelineOptionsTest.java | 1 -
.../flink/metrics/FlinkMetricContainerTest.java | 14 +--
.../functions/FlinkDoFnFunctionTest.java | 106 +++++++++++++++++++++
.../FlinkExecutableStageFunctionTest.java | 16 ++++
.../functions/FlinkStatefulDoFnFunctionTest.java | 106 +++++++++++++++++++++
.../wrappers/SourceInputFormatTest.java | 64 +++++++++++++
.../wrappers/streaming/DoFnOperatorTest.java | 77 +++++++++------
.../streaming/io/UnboundedSourceWrapperTest.java | 30 ++++++
.../src/_includes/flink_java_pipeline_options.html | 5 -
.../_includes/flink_python_pipeline_options.html | 5 -
19 files changed, 426 insertions(+), 113 deletions(-)
create mode 100644
runners/flink/src/test/java/org/apache/beam/runners/flink/translation/functions/FlinkDoFnFunctionTest.java
create mode 100644
runners/flink/src/test/java/org/apache/beam/runners/flink/translation/functions/FlinkStatefulDoFnFunctionTest.java
create mode 100644
runners/flink/src/test/java/org/apache/beam/runners/flink/translation/wrappers/SourceInputFormatTest.java