YARN-8944. TestContainerAllocation.testUserLimitAllocationMultipleContainers failure after YARN-8896. Contributed by Wilfred Spiegelenburg.
This commit is contained in:
parent
63e7134df6
commit
1d90a0dd23
|
@ -70,6 +70,7 @@ import org.junit.Before;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
import static org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.CapacitySchedulerConfiguration.MAXIMUM_ALLOCATION_MB;
|
import static org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.CapacitySchedulerConfiguration.MAXIMUM_ALLOCATION_MB;
|
||||||
|
import static org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.CapacitySchedulerConfiguration.MAX_ASSIGN_PER_HEARTBEAT;
|
||||||
|
|
||||||
public class TestContainerAllocation {
|
public class TestContainerAllocation {
|
||||||
|
|
||||||
|
@ -906,6 +907,9 @@ public class TestContainerAllocation {
|
||||||
CapacitySchedulerConfiguration newConf =
|
CapacitySchedulerConfiguration newConf =
|
||||||
(CapacitySchedulerConfiguration) TestUtils
|
(CapacitySchedulerConfiguration) TestUtils
|
||||||
.getConfigurationWithMultipleQueues(conf);
|
.getConfigurationWithMultipleQueues(conf);
|
||||||
|
// make sure an unlimited number of containers can be assigned,
|
||||||
|
// overriding the default of 100 after YARN-8896
|
||||||
|
newConf.set(MAX_ASSIGN_PER_HEARTBEAT, "-1");
|
||||||
newConf.setUserLimit("root.c", 50);
|
newConf.setUserLimit("root.c", 50);
|
||||||
MockRM rm1 = new MockRM(newConf);
|
MockRM rm1 = new MockRM(newConf);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue