YARN-9069. Fix SchedulerInfo#getSchedulerType for custom schedulers. Contributed by Bilwa S T.

This commit is contained in:
bibinchundatt 2018-11-29 22:02:59 +05:30
parent a68d766e87
commit 07142f54a8

View File

@ -54,6 +54,8 @@ public SchedulerInfo(final ResourceManager rm) {
this.schedulerName = "Fair Scheduler";
} else if (rs instanceof FifoScheduler) {
this.schedulerName = "Fifo Scheduler";
} else {
this.schedulerName = rs.getClass().getSimpleName();
}
this.minAllocResource = new ResourceInfo(rs.getMinimumResourceCapability());
this.maxAllocResource = new ResourceInfo(rs.getMaximumResourceCapability());