This is an automated email from the ASF dual-hosted git repository.
pnowojski pushed a change to branch release-1.14
in repository https://gitbox.apache.org/repos/asf/flink.git.
from fdbf60f [FLINK-25653][network] Move buffer recycle in
SortMergeSubpartitionReader out of lock to avoid deadlock
new 2aec27e [hotfix][test] Extract SourceOperatorTestBase from
SourceOperatorTest
new 6a96c10 [hotfix][test] Fix
SourceOperatorTest#testSameAvailabilityFuture
new 9bef4bc [FLINK-25827][task] Move and rename
MultipleInputAvailabilityHelper
new 9365510 [FLINK-25827][task] Fix potential memory leak in
SourceOperator when using CompletableFuture.anyOf
The 4 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:
.../streaming/api/operators/SourceOperator.java | 27 ++--
.../io/MultipleFuturesAvailabilityHelper.java | 80 +++++++++++
.../runtime/io/StreamMultipleInputProcessor.java | 61 +--------
.../api/operators/SourceOperatorIdleTest.java | 69 ++++++++++
.../api/operators/SourceOperatorTest.java | 146 ++++++---------------
.../api/operators/SourceOperatorTestContext.java | 138 +++++++++++++++++++
6 files changed, 341 insertions(+), 180 deletions(-)
create mode 100644
flink-streaming-java/src/main/java/org/apache/flink/streaming/runtime/io/MultipleFuturesAvailabilityHelper.java
create mode 100644
flink-streaming-java/src/test/java/org/apache/flink/streaming/api/operators/SourceOperatorIdleTest.java
create mode 100644
flink-streaming-java/src/test/java/org/apache/flink/streaming/api/operators/SourceOperatorTestContext.java