Backport part of YARN-3273 to rename CapacitySchedulerLeafQueueInfo#aMResourceLimit to AMResourceLimit. Contributed by Rohith Sharmaks
This commit is contained in:
parent
26c35438f3
commit
54e63c52c9
|
@ -331,6 +331,10 @@ Release 2.7.0 - UNRELEASED
|
|||
YARN-2854. Updated the documentation of the timeline service and the generic
|
||||
history service. (Naganarasimha G R via zjshen)
|
||||
|
||||
Backport part of YARN-3273 to rename
|
||||
CapacitySchedulerLeafQueueInfo#aMResourceLimit to AMResourceLimit.
|
||||
(Rohith via jianhe)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
YARN-2990. FairScheduler's delay-scheduling always waits for node-local and
|
||||
|
|
|
@ -35,7 +35,7 @@ public class CapacitySchedulerLeafQueueInfo extends CapacitySchedulerQueueInfo {
|
|||
protected int userLimit;
|
||||
protected UsersInfo users; // To add another level in the XML
|
||||
protected float userLimitFactor;
|
||||
protected ResourceInfo aMResourceLimit;
|
||||
protected ResourceInfo AMResourceLimit;
|
||||
protected ResourceInfo userAMResourceLimit;
|
||||
protected boolean preemptionDisabled;
|
||||
|
||||
|
@ -52,7 +52,7 @@ public class CapacitySchedulerLeafQueueInfo extends CapacitySchedulerQueueInfo {
|
|||
userLimit = q.getUserLimit();
|
||||
users = new UsersInfo(q.getUsers());
|
||||
userLimitFactor = q.getUserLimitFactor();
|
||||
aMResourceLimit = new ResourceInfo(q.getAMResourceLimit());
|
||||
AMResourceLimit = new ResourceInfo(q.getAMResourceLimit());
|
||||
userAMResourceLimit = new ResourceInfo(q.getUserAMResourceLimit());
|
||||
preemptionDisabled = q.getPreemptionDisabled();
|
||||
}
|
||||
|
@ -91,7 +91,7 @@ public class CapacitySchedulerLeafQueueInfo extends CapacitySchedulerQueueInfo {
|
|||
}
|
||||
|
||||
public ResourceInfo getAMResourceLimit() {
|
||||
return aMResourceLimit;
|
||||
return AMResourceLimit;
|
||||
}
|
||||
|
||||
public ResourceInfo getUserAMResourceLimit() {
|
||||
|
|
|
@ -273,7 +273,7 @@ public class TestApplicationLimits {
|
|||
LeafQueue queue = (LeafQueue)queues.get(A);
|
||||
|
||||
LOG.info("Queue 'A' -" +
|
||||
" aMResourceLimit=" + queue.getAMResourceLimit() +
|
||||
" AMResourceLimit=" + queue.getAMResourceLimit() +
|
||||
" UserAMResourceLimit=" +
|
||||
queue.getUserAMResourceLimit());
|
||||
|
||||
|
|
Loading…
Reference in New Issue