This is an automated email from the ASF dual-hosted git repository.
1996fanrui pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
from 41f2cdb8864 [FLINK-40386][checkpoint] Log which channel state recovery
path is taken and its progress
new ddeb17e52ce [FLINK-40080][checkpoint]
ChannelStateWriter#addInputDataFromSpill: replay spilled segments into the
checkpoint
new 46ad84a6133 [FLINK-40080][checkpoint] FetchedChannelStateDrainer:
incremental drain with atomic snapshot-and-insert
new af146b61707 [FLINK-40080] Switch flag-on recovery to fetch->drain;
retire the in-memory backend
new d9f5e05ea7a [FLINK-40080][network] Remove the unbounded heap fallback
from RecoveredInputChannel#requestBufferBlocking
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:
.../channel/ChannelStateCheckpointWriter.java | 47 ++
.../channel/ChannelStateFilteringHandler.java | 225 -------
.../checkpoint/channel/ChannelStateSerializer.java | 14 +
.../channel/ChannelStateWriteRequest.java | 14 +
.../checkpoint/channel/ChannelStateWriter.java | 20 +
.../checkpoint/channel/ChannelStateWriterImpl.java | 7 +
.../channel/FetchedChannelStateDrainer.java | 167 +++++-
.../channel/RecoveredChannelStateHandler.java | 191 +-----
.../channel/SequentialChannelStateReader.java | 2 -
.../channel/SequentialChannelStateReaderImpl.java | 76 +--
.../partition/consumer/RecoveredInputChannel.java | 79 +--
.../runtime/io/checkpointing/ChannelState.java | 18 +-
.../io/checkpointing/InputProcessorUtil.java | 9 +-
.../SingleCheckpointBarrierHandler.java | 9 +-
.../channel/ChannelStateWriterImplTest.java | 119 ++++
.../channel/FetchedChannelStateDrainerTest.java | 663 +++++++++++++++++++++
.../InputChannelRecoveredStateHandlerTest.java | 365 +++++++++---
.../checkpoint/channel/MockChannelStateWriter.java | 10 +
.../consumer/LocalRecoveredInputChannelTest.java | 2 +-
.../consumer/RecoveredInputChannelTest.java | 119 +++-
.../consumer/RemoteRecoveredInputChannelTest.java | 2 +-
.../runtime/io/checkpointing/ChannelStateTest.java | 124 +++-
.../checkpointing/TestBarrierHandlerFactory.java | 1 +
23 files changed, 1604 insertions(+), 679 deletions(-)
create mode 100644
flink-runtime/src/test/java/org/apache/flink/runtime/checkpoint/channel/FetchedChannelStateDrainerTest.java