YARN-3018. Unified the default value for the configuration property yarn.scheduler.capacity.node-locality-delay in code and default xml file. Contributed by Nijel SF.
(cherry picked from commit f7a74d2491
)
This commit is contained in:
parent
f264a5aeed
commit
24c8d3e54b
|
@ -157,6 +157,10 @@ Release 2.8.0 - UNRELEASED
|
|||
YARN-3593. Add label-type and Improve "DEFAULT_PARTITION" in Node Labels Page.
|
||||
(Naganarasimha G R via wangda)
|
||||
|
||||
YARN-3018. Unified the default value for the configuration property
|
||||
yarn.scheduler.capacity.node-locality-delay in code and default xml file.
|
||||
(Nijel SF via vinodkv)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
YARN-3339. TestDockerContainerExecutor should pull a single image and not
|
||||
|
|
|
@ -181,7 +181,7 @@ public class CapacitySchedulerConfiguration extends ReservationSchedulerConfigur
|
|||
PREFIX + "node-locality-delay";
|
||||
|
||||
@Private
|
||||
public static final int DEFAULT_NODE_LOCALITY_DELAY = -1;
|
||||
public static final int DEFAULT_NODE_LOCALITY_DELAY = 40;
|
||||
|
||||
@Private
|
||||
public static final String SCHEDULE_ASYNCHRONOUSLY_PREFIX =
|
||||
|
@ -664,8 +664,7 @@ public class CapacitySchedulerConfiguration extends ReservationSchedulerConfigur
|
|||
}
|
||||
|
||||
public int getNodeLocalityDelay() {
|
||||
int delay = getInt(NODE_LOCALITY_DELAY, DEFAULT_NODE_LOCALITY_DELAY);
|
||||
return (delay == DEFAULT_NODE_LOCALITY_DELAY) ? 0 : delay;
|
||||
return getInt(NODE_LOCALITY_DELAY, DEFAULT_NODE_LOCALITY_DELAY);
|
||||
}
|
||||
|
||||
public ResourceCalculator getResourceCalculator() {
|
||||
|
|
Loading…
Reference in New Issue