YARN-6746. SchedulerUtils.checkResourceRequestMatchingNodePartition() is dead code
(Contributed by Deepti Sawhney via Daniel Templeton)
This commit is contained in:
parent
0615985886
commit
c5a0c38d8e
|
@ -350,24 +350,6 @@ public class SchedulerUtils {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean checkResourceRequestMatchingNodePartition(
|
|
||||||
String requestedPartition, String nodePartition,
|
|
||||||
SchedulingMode schedulingMode) {
|
|
||||||
// We will only look at node label = nodeLabelToLookAt according to
|
|
||||||
// schedulingMode and partition of node.
|
|
||||||
String nodePartitionToLookAt = null;
|
|
||||||
if (schedulingMode == SchedulingMode.RESPECT_PARTITION_EXCLUSIVITY) {
|
|
||||||
nodePartitionToLookAt = nodePartition;
|
|
||||||
} else {
|
|
||||||
nodePartitionToLookAt = RMNodeLabelsManager.NO_LABEL;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (null == requestedPartition) {
|
|
||||||
requestedPartition = RMNodeLabelsManager.NO_LABEL;
|
|
||||||
}
|
|
||||||
return requestedPartition.equals(nodePartitionToLookAt);
|
|
||||||
}
|
|
||||||
|
|
||||||
private static boolean hasPendingResourceRequest(ResourceCalculator rc,
|
private static boolean hasPendingResourceRequest(ResourceCalculator rc,
|
||||||
ResourceUsage usage, String partitionToLookAt, Resource cluster) {
|
ResourceUsage usage, String partitionToLookAt, Resource cluster) {
|
||||||
if (Resources.greaterThan(rc, cluster,
|
if (Resources.greaterThan(rc, cluster,
|
||||||
|
|
Loading…
Reference in New Issue