You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/layouts/shortcodes/generated/all_taskmanager_section.html
+1-1
Original file line number
Diff line number
Diff line change
@@ -90,7 +90,7 @@
90
90
<td><h5>taskmanager.load-balance.mode</h5></td>
91
91
<tdstyle="word-wrap: break-word;">NONE</td>
92
92
<td><p>Enum</p></td>
93
-
<td>Mode for the load-balance allocation strategy across all available <codeclass="highlighter-rouge">TaskManagers</code>.<ul><li>The <codeclass="highlighter-rouge">SLOTS</code> mode tries to spread out the slots evenly across all available <codeclass="highlighter-rouge">TaskManagers</code>.</li><li>The <codeclass="highlighter-rouge">NONE</code> mode is the default mode without any specified strategy.</li></ul><br/><br/>Possible values:<ul><li>"NONE"</li><li>"SLOTS"</li></ul></td>
93
+
<td>Mode for the load-balance allocation strategy across all available <codeclass="highlighter-rouge">TaskManagers</code>.<ul><li>The <codeclass="highlighter-rouge">SLOTS</code> mode tries to spread out the slots evenly across all available <codeclass="highlighter-rouge">TaskManagers</code>.</li><li>The <codeclass="highlighter-rouge">MIN_RESOURCES</code> mode tries to allocate slots on minimum number of available <codeclass="highlighter-rouge">TaskManagers</code>.</li><li>The <codeclass="highlighter-rouge">NONE</code> mode is the default mode without any specified strategy.</li></ul><br/><br/>Possible values:<ul><li>"NONE"</li><li>"SLOTS"</li><li>"MIN_RESOURCES"</li></ul></td>
Copy file name to clipboardexpand all lines: docs/layouts/shortcodes/generated/expert_scheduling_section.html
+1-1
Original file line number
Diff line number
Diff line change
@@ -222,7 +222,7 @@
222
222
<td><h5>taskmanager.load-balance.mode</h5></td>
223
223
<tdstyle="word-wrap: break-word;">NONE</td>
224
224
<td><p>Enum</p></td>
225
-
<td>Mode for the load-balance allocation strategy across all available <codeclass="highlighter-rouge">TaskManagers</code>.<ul><li>The <codeclass="highlighter-rouge">SLOTS</code> mode tries to spread out the slots evenly across all available <codeclass="highlighter-rouge">TaskManagers</code>.</li><li>The <codeclass="highlighter-rouge">NONE</code> mode is the default mode without any specified strategy.</li></ul><br/><br/>Possible values:<ul><li>"NONE"</li><li>"SLOTS"</li></ul></td>
225
+
<td>Mode for the load-balance allocation strategy across all available <codeclass="highlighter-rouge">TaskManagers</code>.<ul><li>The <codeclass="highlighter-rouge">SLOTS</code> mode tries to spread out the slots evenly across all available <codeclass="highlighter-rouge">TaskManagers</code>.</li><li>The <codeclass="highlighter-rouge">MIN_RESOURCES</code> mode tries to allocate slots on minimum number of available <codeclass="highlighter-rouge">TaskManagers</code>.</li><li>The <codeclass="highlighter-rouge">NONE</code> mode is the default mode without any specified strategy.</li></ul><br/><br/>Possible values:<ul><li>"NONE"</li><li>"SLOTS"</li><li>"MIN_RESOURCES"</li></ul></td>
Copy file name to clipboardexpand all lines: docs/layouts/shortcodes/generated/task_manager_configuration.html
+1-1
Original file line number
Diff line number
Diff line change
@@ -72,7 +72,7 @@
72
72
<td><h5>taskmanager.load-balance.mode</h5></td>
73
73
<tdstyle="word-wrap: break-word;">NONE</td>
74
74
<td><p>Enum</p></td>
75
-
<td>Mode for the load-balance allocation strategy across all available <codeclass="highlighter-rouge">TaskManagers</code>.<ul><li>The <codeclass="highlighter-rouge">SLOTS</code> mode tries to spread out the slots evenly across all available <codeclass="highlighter-rouge">TaskManagers</code>.</li><li>The <codeclass="highlighter-rouge">NONE</code> mode is the default mode without any specified strategy.</li></ul><br/><br/>Possible values:<ul><li>"NONE"</li><li>"SLOTS"</li></ul></td>
75
+
<td>Mode for the load-balance allocation strategy across all available <codeclass="highlighter-rouge">TaskManagers</code>.<ul><li>The <codeclass="highlighter-rouge">SLOTS</code> mode tries to spread out the slots evenly across all available <codeclass="highlighter-rouge">TaskManagers</code>.</li><li>The <codeclass="highlighter-rouge">MIN_RESOURCES</code> mode tries to allocate slots on minimum number of available <codeclass="highlighter-rouge">TaskManagers</code>.</li><li>The <codeclass="highlighter-rouge">NONE</code> mode is the default mode without any specified strategy.</li></ul><br/><br/>Possible values:<ul><li>"NONE"</li><li>"SLOTS"</li><li>"MIN_RESOURCES"</li></ul></td>
Copy file name to clipboardexpand all lines: flink-runtime/src/main/java/org/apache/flink/runtime/resourcemanager/slotmanager/DefaultResourceAllocationStrategy.java
+52-17
Original file line number
Diff line number
Diff line change
@@ -95,10 +95,20 @@ public DefaultResourceAllocationStrategy(
Copy file name to clipboardexpand all lines: flink-runtime/src/test/java/org/apache/flink/runtime/resourcemanager/slotmanager/DefaultResourceAllocationStrategyTest.java
+107-8
Original file line number
Diff line number
Diff line change
@@ -50,6 +50,9 @@ class DefaultResourceAllocationStrategyTest {
0 commit comments