This is an automated email from the ASF dual-hosted git repository.
fanrui pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
from ea752ff1129 [FLINK-33874][runtime] Support resource request wait
mechanism at DefaultDeclarativeSlotPool side for Default Scheduler
new 83f52945d29 [Hotfix][runtime] Add '@Internal' annotation for
TaskManagerLoadBalanceMode#loadFromConfiguration
new ba3f87ef683 [Hotfix][runtime] Enrich the toString method of
SlotSharingGroup class
new 76049d09e40 [FLINK-33386][runtime] Support tasks balancing at slot
level for Default Scheduler
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/configuration/TaskManagerOptions.java | 2 +
.../jobmanager/scheduler/SlotSharingGroup.java | 2 +-
.../scheduler/AbstractSlotSharingStrategy.java | 113 ++++++++
.../scheduler/ExecutionSlotSharingGroup.java | 22 +-
.../LocalInputPreferredSlotSharingStrategy.java | 90 +-----
.../TaskBalancedPreferredSlotSharingStrategy.java | 310 +++++++++++++++++++++
.../scheduler/AbstractSlotSharingStrategyTest.java | 140 ++++++++++
...LocalInputPreferredSlotSharingStrategyTest.java | 260 ++++++++---------
.../MergingSharedSlotProfileRetrieverTest.java | 7 +-
.../runtime/scheduler/SharedSlotTestingUtils.java | 3 +-
.../SlotSharingExecutionSlotAllocatorTest.java | 6 +-
...skBalancedPreferredSlotSharingStrategyTest.java | 178 ++++++++++++
12 files changed, 897 insertions(+), 236 deletions(-)
create mode 100644
flink-runtime/src/main/java/org/apache/flink/runtime/scheduler/AbstractSlotSharingStrategy.java
create mode 100644
flink-runtime/src/main/java/org/apache/flink/runtime/scheduler/TaskBalancedPreferredSlotSharingStrategy.java
create mode 100644
flink-runtime/src/test/java/org/apache/flink/runtime/scheduler/AbstractSlotSharingStrategyTest.java
create mode 100644
flink-runtime/src/test/java/org/apache/flink/runtime/scheduler/TaskBalancedPreferredSlotSharingStrategyTest.java