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

(cherry picked from commit 668e897538)
This commit is contained in:
Tsuyoshi Ozawa 2015-11-09 15:25:31 +09:00
parent 7802248c23
commit 1c0c77e7f0
2 changed files with 4 additions and 1 deletions

View File

@ -130,6 +130,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

View File

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