YARN-8165. Incorrect queue name logging in AbstractContainerAllocator. Contributed by Weiwei Yan.
This commit is contained in:
parent
60e5c1b516
commit
dd5e18c4ae
@ -96,7 +96,8 @@ protected CSAssignment getCSAssignmentFromAllocateResult(
|
||||
// This is a reserved container
|
||||
LOG.info("Reserved container " + " application="
|
||||
+ application.getApplicationId() + " resource=" + allocatedResource
|
||||
+ " queue=" + this.toString() + " cluster=" + clusterResource);
|
||||
+ " queue=" + appInfo.getQueueName()
|
||||
+ " cluster=" + clusterResource);
|
||||
assignment.getAssignmentInformation().addReservationDetails(
|
||||
updatedContainer, application.getCSLeafQueue().getQueuePath());
|
||||
assignment.getAssignmentInformation().incrReservations();
|
||||
@ -124,9 +125,9 @@ protected CSAssignment getCSAssignmentFromAllocateResult(
|
||||
// Inform the ordering policy
|
||||
LOG.info("assignedContainer" + " application attempt=" + application
|
||||
.getApplicationAttemptId() + " container=" + updatedContainer
|
||||
.getContainerId() + " queue=" + this + " clusterResource="
|
||||
+ clusterResource + " type=" + assignment.getType()
|
||||
+ " requestedPartition="
|
||||
.getContainerId() + " queue=" + appInfo.getQueueName()
|
||||
+ " clusterResource=" + clusterResource
|
||||
+ " type=" + assignment.getType() + " requestedPartition="
|
||||
+ updatedContainer.getNodeLabelExpression());
|
||||
|
||||
assignment.getAssignmentInformation().addAllocationDetails(
|
||||
|
Loading…
Reference in New Issue
Block a user