YARN-7389. Make TestResourceManager Scheduler agnostic. (Robert Kanter via Haibo Chen)
This commit is contained in:
parent
17cd8d0c17
commit
d7f3737f3b
@ -39,7 +39,7 @@
|
||||
import org.apache.hadoop.yarn.exceptions.YarnRuntimeException;
|
||||
import org.apache.hadoop.yarn.server.resourcemanager.rmapp.attempt.RMAppAttemptState;
|
||||
import org.apache.hadoop.yarn.server.resourcemanager.rmnode.RMNode;
|
||||
import org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.CapacityScheduler;
|
||||
import org.apache.hadoop.yarn.server.resourcemanager.scheduler.AbstractYarnScheduler;
|
||||
import org.apache.hadoop.yarn.server.resourcemanager.scheduler.event.AppAttemptRemovedSchedulerEvent;
|
||||
import org.apache.hadoop.yarn.server.resourcemanager.scheduler.event.NodeAddedSchedulerEvent;
|
||||
import org.apache.hadoop.yarn.server.resourcemanager.scheduler.event.NodeUpdateSchedulerEvent;
|
||||
@ -58,8 +58,6 @@ public class TestResourceManager {
|
||||
@Before
|
||||
public void setUp() throws Exception {
|
||||
Configuration conf = new YarnConfiguration();
|
||||
conf.set(YarnConfiguration.RM_SCHEDULER,
|
||||
CapacityScheduler.class.getCanonicalName());
|
||||
UserGroupInformation.setConfiguration(conf);
|
||||
resourceManager = new ResourceManager();
|
||||
resourceManager.init(conf);
|
||||
@ -133,6 +131,7 @@ public void testResourceAllocation() throws IOException,
|
||||
|
||||
// Send a heartbeat to kick the tires on the Scheduler
|
||||
nodeUpdate(nm1);
|
||||
((AbstractYarnScheduler)resourceManager.getResourceScheduler()).update();
|
||||
|
||||
// Get allocations from the scheduler
|
||||
application.schedule();
|
||||
@ -262,8 +261,6 @@ protected void doSecureLogin() throws IOException {
|
||||
}
|
||||
};
|
||||
Configuration conf = new YarnConfiguration();
|
||||
conf.set(YarnConfiguration.RM_SCHEDULER,
|
||||
CapacityScheduler.class.getCanonicalName());
|
||||
conf.set(filterInitializerConfKey, filterInitializer);
|
||||
conf.set("hadoop.security.authentication", "kerberos");
|
||||
conf.set("hadoop.http.authentication.type", "kerberos");
|
||||
@ -298,8 +295,6 @@ protected void doSecureLogin() throws IOException {
|
||||
for (String filterInitializer : simpleFilterInitializers) {
|
||||
resourceManager = new ResourceManager();
|
||||
Configuration conf = new YarnConfiguration();
|
||||
conf.set(YarnConfiguration.RM_SCHEDULER,
|
||||
CapacityScheduler.class.getCanonicalName());
|
||||
conf.set(filterInitializerConfKey, filterInitializer);
|
||||
try {
|
||||
UserGroupInformation.setConfiguration(conf);
|
||||
|
Loading…
Reference in New Issue
Block a user