Skip to content

Commit

Permalink
YARN-10997. Revisit allocation and reservation logging. Contributed b…
Browse files Browse the repository at this point in the history
…y Andras Gyori
  • Loading branch information
szilard-nemeth committed Nov 12, 2021
1 parent 7fb1bb8 commit 7cb887e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3294,13 +3294,11 @@ public boolean tryCommit(Resource cluster, ResourceCommitRequest r,
long commitSuccess = System.nanoTime() - commitStart;
CapacitySchedulerMetrics.getMetrics()
.addCommitSuccess(commitSuccess);
LOG.info("Allocation proposal accepted");
isSuccess = true;
} else{
long commitFailed = System.nanoTime() - commitStart;
CapacitySchedulerMetrics.getMetrics()
.addCommitFailure(commitFailed);
LOG.info("Failed to accept allocation proposal");
}

LOG.debug("Allocation proposal accepted={}, proposal={}", isSuccess,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -357,6 +357,7 @@ private boolean commonCheckContainerAllocation(
// adding NP check as this proposal could not be allocated from reserved
// container in async-scheduling mode
if (allocation.getAllocateFromReservedContainer() == null) {
LOG.debug("Trying to allocate from reserved container in async scheduling mode");
return false;
}
RMContainer fromReservedContainer =
Expand Down Expand Up @@ -572,6 +573,8 @@ public boolean apply(Resource cluster, ResourceCommitRequest<FiCaSchedulerApp,
if (updatePending &&
getOutstandingAsksCount(schedulerContainer.getSchedulerRequestKey())
<= 0) {
LOG.debug("Rejecting appliance of allocation due to existing pending allocation " +
"request for " + schedulerContainer);
return false;
}

Expand Down Expand Up @@ -670,10 +673,12 @@ public boolean apply(Resource cluster, ResourceCommitRequest<FiCaSchedulerApp,
schedulerContainer.getRmContainer().getContainer(),
reReservation);

LOG.info("Reserved container=" + rmContainer.getContainerId()
+ ", on node=" + schedulerContainer.getSchedulerNode()
+ " with resource=" + rmContainer
.getAllocatedOrReservedResource());
if (LOG.isDebugEnabled()) {
LOG.debug("Reserved container=" + rmContainer.getContainerId()
+ ", on node=" + schedulerContainer.getSchedulerNode()
+ " with resource=" + rmContainer
.getAllocatedOrReservedResource());
}
}
}
} finally {
Expand Down

0 comments on commit 7cb887e

Please sign in to comment.