This is an automated email from the ASF dual-hosted git repository.
fanrui pushed a change to branch release-2.1
in repository https://gitbox.apache.org/repos/asf/flink.git
from 2a4f1f2ee7f [FLINK-38483][checkpoint] Fix the bug that Job cannot be
recovered from unaligned checkpoint due to `Cannot get old subtasks from a
descriptor that represents no state.` exception
new 96b38254632 [FLINK-38415][refactor] Extract single state handle
processing logic for testability
new 1c3b53d5311 [FLINK-38415][checkpoint] Disable auto compaction to
prevent Index OutOfBounds
The 2 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:
.../state/rocksdb/RocksDBKeyedStateBackend.java | 5 +
.../restore/DistributeStateHandlerHelper.java | 175 +++++++++++++++
.../state/rocksdb/restore/RestoredDBInstance.java | 165 +++++++++++++++
.../RocksDBIncrementalRestoreOperation.java | 235 +++++----------------
.../RocksDBAutoCompactionIngestRestoreTest.java | 177 ++++++++++++++++
.../restore/DistributeStateHandlerHelperTest.java | 200 ++++++++++++++++++
6 files changed, 775 insertions(+), 182 deletions(-)
create mode 100644
flink-state-backends/flink-statebackend-rocksdb/src/main/java/org/apache/flink/state/rocksdb/restore/DistributeStateHandlerHelper.java
create mode 100644
flink-state-backends/flink-statebackend-rocksdb/src/main/java/org/apache/flink/state/rocksdb/restore/RestoredDBInstance.java
create mode 100644
flink-state-backends/flink-statebackend-rocksdb/src/test/java/org/apache/flink/state/rocksdb/RocksDBAutoCompactionIngestRestoreTest.java
create mode 100644
flink-state-backends/flink-statebackend-rocksdb/src/test/java/org/apache/flink/state/rocksdb/restore/DistributeStateHandlerHelperTest.java