YARN-3733. Fix DominantRC#compare() does not work as expected if cluster resource is empty. (Rohith Sharmaks via wangda)
(cherry picked from commitebd797c48f
) (cherry picked from commit78d626fa89
)
This commit is contained in:
parent
f1b35ffd4c
commit
85d92721a4
|
@ -168,6 +168,9 @@ Release 2.6.1 - UNRELEASED
|
||||||
YARN-2637. Fixed max-am-resource-percent calculation in CapacityScheduler
|
YARN-2637. Fixed max-am-resource-percent calculation in CapacityScheduler
|
||||||
when activating applications. (Craig Welch via jianhe)
|
when activating applications. (Craig Welch via jianhe)
|
||||||
|
|
||||||
|
YARN-3733. Fix DominantRC#compare() does not work as expected if
|
||||||
|
cluster resource is empty. (Rohith Sharmaks via wangda)
|
||||||
|
|
||||||
Release 2.6.0 - 2014-11-18
|
Release 2.6.0 - 2014-11-18
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -53,6 +53,21 @@ public class DominantResourceCalculator extends ResourceCalculator {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (isInvalidDivisor(clusterResource)) {
|
||||||
|
if ((lhs.getMemory() < rhs.getMemory() && lhs.getVirtualCores() > rhs
|
||||||
|
.getVirtualCores())
|
||||||
|
|| (lhs.getMemory() > rhs.getMemory() && lhs.getVirtualCores() < rhs
|
||||||
|
.getVirtualCores())) {
|
||||||
|
return 0;
|
||||||
|
} else if (lhs.getMemory() > rhs.getMemory()
|
||||||
|
|| lhs.getVirtualCores() > rhs.getVirtualCores()) {
|
||||||
|
return 1;
|
||||||
|
} else if (lhs.getMemory() < rhs.getMemory()
|
||||||
|
|| lhs.getVirtualCores() < rhs.getVirtualCores()) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
float l = getResourceAsValue(clusterResource, lhs, true);
|
float l = getResourceAsValue(clusterResource, lhs, true);
|
||||||
float r = getResourceAsValue(clusterResource, rhs, true);
|
float r = getResourceAsValue(clusterResource, rhs, true);
|
||||||
|
|
||||||
|
|
|
@ -118,6 +118,7 @@ import org.apache.hadoop.yarn.server.resourcemanager.webapp.dao.CapacitySchedule
|
||||||
import org.apache.hadoop.yarn.server.resourcemanager.webapp.dao.CapacitySchedulerQueueInfo;
|
import org.apache.hadoop.yarn.server.resourcemanager.webapp.dao.CapacitySchedulerQueueInfo;
|
||||||
import org.apache.hadoop.yarn.server.resourcemanager.webapp.dao.CapacitySchedulerQueueInfoList;
|
import org.apache.hadoop.yarn.server.resourcemanager.webapp.dao.CapacitySchedulerQueueInfoList;
|
||||||
import org.apache.hadoop.yarn.server.utils.BuilderUtils;
|
import org.apache.hadoop.yarn.server.utils.BuilderUtils;
|
||||||
|
import org.apache.hadoop.yarn.util.resource.DefaultResourceCalculator;
|
||||||
import org.apache.hadoop.yarn.util.resource.DominantResourceCalculator;
|
import org.apache.hadoop.yarn.util.resource.DominantResourceCalculator;
|
||||||
import org.apache.hadoop.yarn.util.resource.Resources;
|
import org.apache.hadoop.yarn.util.resource.Resources;
|
||||||
import org.junit.After;
|
import org.junit.After;
|
||||||
|
@ -1136,6 +1137,12 @@ public class TestCapacityScheduler {
|
||||||
|
|
||||||
private MockRM setUpMove() {
|
private MockRM setUpMove() {
|
||||||
CapacitySchedulerConfiguration conf = new CapacitySchedulerConfiguration();
|
CapacitySchedulerConfiguration conf = new CapacitySchedulerConfiguration();
|
||||||
|
return setUpMove(conf);
|
||||||
|
}
|
||||||
|
|
||||||
|
private MockRM setUpMove(Configuration config) {
|
||||||
|
CapacitySchedulerConfiguration conf =
|
||||||
|
new CapacitySchedulerConfiguration(config);
|
||||||
setupQueueConfiguration(conf);
|
setupQueueConfiguration(conf);
|
||||||
conf.setClass(YarnConfiguration.RM_SCHEDULER, CapacityScheduler.class,
|
conf.setClass(YarnConfiguration.RM_SCHEDULER, CapacityScheduler.class,
|
||||||
ResourceScheduler.class);
|
ResourceScheduler.class);
|
||||||
|
@ -2071,4 +2078,53 @@ public class TestCapacityScheduler {
|
||||||
Assert.assertEquals(0, report.getNumReservedContainers());
|
Assert.assertEquals(0, report.getNumReservedContainers());
|
||||||
rm.stop();
|
rm.stop();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test(timeout = 30000)
|
||||||
|
public void testAMLimitUsage() throws Exception {
|
||||||
|
|
||||||
|
CapacitySchedulerConfiguration config =
|
||||||
|
new CapacitySchedulerConfiguration();
|
||||||
|
|
||||||
|
config.set(CapacitySchedulerConfiguration.RESOURCE_CALCULATOR_CLASS,
|
||||||
|
DefaultResourceCalculator.class.getName());
|
||||||
|
verifyAMLimitForLeafQueue(config);
|
||||||
|
|
||||||
|
config.set(CapacitySchedulerConfiguration.RESOURCE_CALCULATOR_CLASS,
|
||||||
|
DominantResourceCalculator.class.getName());
|
||||||
|
verifyAMLimitForLeafQueue(config);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private void verifyAMLimitForLeafQueue(CapacitySchedulerConfiguration config)
|
||||||
|
throws Exception {
|
||||||
|
MockRM rm = setUpMove(config);
|
||||||
|
|
||||||
|
String queueName = "a1";
|
||||||
|
String userName = "user_0";
|
||||||
|
ResourceScheduler scheduler = rm.getRMContext().getScheduler();
|
||||||
|
LeafQueue queueA =
|
||||||
|
(LeafQueue) ((CapacityScheduler) scheduler).getQueue(queueName);
|
||||||
|
Resource amResourceLimit = queueA.getAMResourceLimit();
|
||||||
|
|
||||||
|
Resource amResource =
|
||||||
|
Resource.newInstance(amResourceLimit.getMemory() + 1,
|
||||||
|
amResourceLimit.getVirtualCores() + 1);
|
||||||
|
|
||||||
|
rm.submitApp(amResource.getMemory(), "app-1", userName, null, queueName);
|
||||||
|
|
||||||
|
rm.submitApp(amResource.getMemory(), "app-1", userName, null, queueName);
|
||||||
|
|
||||||
|
// When AM limit is exceeded, 1 applications will be activated.Rest all
|
||||||
|
// applications will be in pending
|
||||||
|
Assert.assertEquals("PendingApplications should be 1", 1,
|
||||||
|
queueA.getNumPendingApplications());
|
||||||
|
Assert.assertEquals("Active applications should be 1", 1,
|
||||||
|
queueA.getNumActiveApplications());
|
||||||
|
|
||||||
|
Assert.assertEquals("User PendingApplications should be 1", 1, queueA
|
||||||
|
.getUser(userName).getPendingApplications());
|
||||||
|
Assert.assertEquals("User Active applications should be 1", 1, queueA
|
||||||
|
.getUser(userName).getActiveApplications());
|
||||||
|
rm.stop();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue