YARN-4310. FairScheduler: Log skipping reservation messages at DEBUG level (asuresh)

(cherry picked from commit 58d1df585c)
This commit is contained in:
Arun Suresh 2015-10-29 13:42:09 -07:00
parent d6d642a4e3
commit 8943abfb08
2 changed files with 11 additions and 7 deletions

View File

@ -497,6 +497,8 @@ Release 2.8.0 - UNRELEASED
YARN-3216. Max-AM-Resource-Percentage should respect node labels. YARN-3216. Max-AM-Resource-Percentage should respect node labels.
(Sunil G via wangda) (Sunil G via wangda)
YARN-4310. FairScheduler: Log skipping reservation messages at DEBUG level (asuresh)
OPTIMIZATIONS OPTIMIZATIONS
YARN-3339. TestDockerContainerExecutor should pull a single image and not YARN-3339. TestDockerContainerExecutor should pull a single image and not

View File

@ -488,13 +488,15 @@ private boolean reservationExceedsThreshold(FSSchedulerNode node,
if (existingReservations >= numAllowedReservations) { if (existingReservations >= numAllowedReservations) {
DecimalFormat df = new DecimalFormat(); DecimalFormat df = new DecimalFormat();
df.setMaximumFractionDigits(2); df.setMaximumFractionDigits(2);
LOG.info("Reservation Exceeds Allowed number of nodes:" + if (LOG.isDebugEnabled()) {
LOG.debug("Reservation Exceeds Allowed number of nodes:" +
" app_id=" + getApplicationId() + " app_id=" + getApplicationId() +
" existingReservations=" + existingReservations + " existingReservations=" + existingReservations +
" totalAvailableNodes=" + totalAvailNodes + " totalAvailableNodes=" + totalAvailNodes +
" reservableNodesRatio=" + df.format( " reservableNodesRatio=" + df.format(
scheduler.getReservableNodesRatio()) + scheduler.getReservableNodesRatio()) +
" numAllowedReservations=" + numAllowedReservations); " numAllowedReservations=" + numAllowedReservations);
}
return true; return true;
} }
} }