瀏覽代碼

YARN-7727. Incorrect log levels in few logs with QueuePriorityContainerCandidateSelector. Contributed by Prabhu Joseph.

(cherry picked from commit 128d773a2315fa6baaa3a52b13c53c77e741b69c)
Sunil G 7 年之前
父節點
當前提交
f270818ed3

+ 6 - 5
hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/monitor/capacity/QueuePriorityContainerCandidateSelector.java

@@ -118,8 +118,9 @@ public class QueuePriorityContainerCandidateSelector
   }
   }
 
 
   private void intializePriorityDigraph() {
   private void intializePriorityDigraph() {
-    LOG.info("Initializing priority preemption directed graph:");
-
+    if (LOG.isDebugEnabled()) {
+      LOG.debug("Initializing priority preemption directed graph:");
+    }
     // Make sure we iterate all leaf queue combinations
     // Make sure we iterate all leaf queue combinations
     for (String q1 : preemptionContext.getLeafQueueNames()) {
     for (String q1 : preemptionContext.getLeafQueueNames()) {
       for (String q2 : preemptionContext.getLeafQueueNames()) {
       for (String q2 : preemptionContext.getLeafQueueNames()) {
@@ -148,12 +149,12 @@ public class QueuePriorityContainerCandidateSelector
           if (p1 < p2) {
           if (p1 < p2) {
             priorityDigraph.put(q2, q1, true);
             priorityDigraph.put(q2, q1, true);
             if (LOG.isDebugEnabled()) {
             if (LOG.isDebugEnabled()) {
-              LOG.info("- Added priority ordering edge: " + q2 + " >> " + q1);
+              LOG.debug("- Added priority ordering edge: " + q2 + " >> " + q1);
             }
             }
           } else if (p2 < p1) {
           } else if (p2 < p1) {
             priorityDigraph.put(q1, q2, true);
             priorityDigraph.put(q1, q2, true);
             if (LOG.isDebugEnabled()) {
             if (LOG.isDebugEnabled()) {
-              LOG.info("- Added priority ordering edge: " + q1 + " >> " + q2);
+              LOG.debug("- Added priority ordering edge: " + q1 + " >> " + q2);
             }
             }
           }
           }
         }
         }
@@ -506,4 +507,4 @@ public class QueuePriorityContainerCandidateSelector
 
 
     return selectedCandidates;
     return selectedCandidates;
   }
   }
-}
+}