This is an automated email from the ASF dual-hosted git repository. dwysakowicz pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/flink.git.
from d84e7ca [hotfix][table-planner-blink] Fix typo in PlannerContext new 5010d2a [FLINK-21206] Implement HeapKeyValueStateIterator new 7564c81 [FLINK-21206] Write savepoints in unified format from HeapStateBackend new 5c772f0 [hotfix] Add timeout to bash scripts waiting for an event The 3 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: flink-end-to-end-tests/test-scripts/common.sh | 22 ++ .../test-scripts/test_stream_state_ttl.sh | 2 +- .../flink/runtime/state/KeyValueStateIterator.java | 4 +- .../state/heap/HeapKeyValueStateIterator.java | 421 +++++++++++++++++++++ .../runtime/state/heap/HeapKeyedStateBackend.java | 19 +- .../state/heap/HeapKeyedStateBackendBuilder.java | 16 +- .../runtime/state/heap/HeapSavepointStrategy.java | 95 +++++ .../runtime/state/heap/HeapSnapshotResources.java | 190 ++++++++++ .../runtime/state/heap/HeapSnapshotStrategy.java | 116 +----- flink-tests/pom.xml | 9 + .../state/HeapSavepointStateBackendSwitchTest.java | 4 +- .../state/SavepointStateBackendSwitchTestBase.java | 65 ++-- 12 files changed, 828 insertions(+), 135 deletions(-) create mode 100644 flink-runtime/src/main/java/org/apache/flink/runtime/state/heap/HeapKeyValueStateIterator.java create mode 100644 flink-runtime/src/main/java/org/apache/flink/runtime/state/heap/HeapSavepointStrategy.java create mode 100644 flink-runtime/src/main/java/org/apache/flink/runtime/state/heap/HeapSnapshotResources.java