瀏覽代碼

MAPREDUCE-5763. Warn message about httpshuffle in NM logs. Contributed by Akira AJISAKA.

Tsuyoshi Ozawa 9 年之前
父節點
當前提交
668e897538

+ 3 - 0
hadoop-mapreduce-project/CHANGES.txt

@@ -423,6 +423,9 @@ Release 2.8.0 - UNRELEASED
     MAPREDUCE-6489. Fail fast rogue tasks that write too much to local disk
     (Maysam Yabandeh via jlowe)
 
+    MAPREDUCE-5763. Warn message about httpshuffle in NM logs.
+    (Akira AJISAKA via ozawa)
+
   OPTIMIZATIONS
 
     MAPREDUCE-6376. Add avro binary support for jhist files (Ray Chiang via

+ 1 - 1
hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-shuffle/src/main/java/org/apache/hadoop/mapred/ShuffleHandler.java

@@ -356,7 +356,7 @@ public class ShuffleHandler extends AuxiliaryService {
   }
 
   ShuffleHandler(MetricsSystem ms) {
-    super("httpshuffle");
+    super(MAPREDUCE_SHUFFLE_SERVICEID);
     metrics = ms.register(new ShuffleMetrics());
   }