This is an automated email from the ASF dual-hosted git repository. fanrui pushed a change to branch release-2.0 in repository https://gitbox.apache.org/repos/asf/flink.git
from c5689c41f66 [BP-2.0][FLINK-36663][Window]Fix the first processWatermark has extra data after restore by restore timeService's watermark. (#26765) new 24932c1417d [FLINK-37701] Fix AdaptiveScheduler ignoring checkpoint states sizes for local recovery adjustment. new a208bf0746b [FLINK-37701] Address missed nit from #26663 on using @NonNull annotations. new 5f4d7136e48 [FLINK-37701] Extract LocalRecoverTest to reduce AdaptiveSchedulerTest length, restore checkstyle line-length limit. 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: .../scheduler/adaptive/AdaptiveScheduler.java | 18 +- .../allocator/JobAllocationsInformation.java | 13 +- .../allocator/StateLocalitySlotAssigner.java | 6 +- .../adaptive/allocator/StateSizeEstimates.java | 31 +-- .../runtime/scheduler/SchedulerTestingUtils.java | 74 +++++-- .../scheduler/adaptive/AdaptiveSchedulerTest.java | 136 +------------ .../adaptive/AdaptiveSchedulerTestBase.java | 176 +++++++++++++++++ .../runtime/scheduler/adaptive/ExecutingTest.java | 9 +- .../scheduler/adaptive/LocalRecoveryTest.java | 219 +++++++++++++++++++++ .../allocator/StateLocalitySlotAssignerTest.java | 53 +++++ .../adaptive/allocator/TestingSlotAllocator.java | 98 ++++++++- 11 files changed, 640 insertions(+), 193 deletions(-) create mode 100644 flink-runtime/src/test/java/org/apache/flink/runtime/scheduler/adaptive/AdaptiveSchedulerTestBase.java create mode 100644 flink-runtime/src/test/java/org/apache/flink/runtime/scheduler/adaptive/LocalRecoveryTest.java