YARN-8165. Incorrect queue name logging in AbstractContainerAllocator. Contributed by Weiwei Yan.

(cherry picked from commit dd5e18c4aecba56f140c3cc11affc2cb5e61c79d)
This commit is contained in:
Inigo Goiri 2018-04-16 16:52:17 -07:00
parent b9dc0e597e
commit f37f680a4e

View File

@ -97,7 +97,8 @@ protected CSAssignment getCSAssignmentFromAllocateResult(
// This is a reserved container // This is a reserved container
LOG.info("Reserved container " + " application=" LOG.info("Reserved container " + " application="
+ application.getApplicationId() + " resource=" + allocatedResource + application.getApplicationId() + " resource=" + allocatedResource
+ " queue=" + this.toString() + " cluster=" + clusterResource); + " queue=" + appInfo.getQueueName()
+ " cluster=" + clusterResource);
assignment.getAssignmentInformation().addReservationDetails( assignment.getAssignmentInformation().addReservationDetails(
updatedContainer, application.getCSLeafQueue().getQueuePath()); updatedContainer, application.getCSLeafQueue().getQueuePath());
assignment.getAssignmentInformation().incrReservations(); assignment.getAssignmentInformation().incrReservations();
@ -125,9 +126,9 @@ protected CSAssignment getCSAssignmentFromAllocateResult(
// Inform the ordering policy // Inform the ordering policy
LOG.info("assignedContainer" + " application attempt=" + application LOG.info("assignedContainer" + " application attempt=" + application
.getApplicationAttemptId() + " container=" + updatedContainer .getApplicationAttemptId() + " container=" + updatedContainer
.getContainerId() + " queue=" + this + " clusterResource=" .getContainerId() + " queue=" + appInfo.getQueueName()
+ clusterResource + " type=" + assignment.getType() + " clusterResource=" + clusterResource
+ " requestedPartition=" + " type=" + assignment.getType() + " requestedPartition="
+ updatedContainer.getNodeLabelExpression()); + updatedContainer.getNodeLabelExpression());
assignment.getAssignmentInformation().addAllocationDetails( assignment.getAssignmentInformation().addAllocationDetails(