MAPREDUCE-5209. Fix units in a ShuffleScheduler log message.
Contributed by Tsuyoshi OZAWA git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1480472 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2f7c04f53a
commit
5cf0e57849
|
@ -221,6 +221,9 @@ Release 2.0.5-beta - UNRELEASED
|
|||
MAPREDUCE-5204. Handling YarnRemoteException separately from IOException in
|
||||
MR app after YARN-629. (Xuan Gong via vinodkv)
|
||||
|
||||
MAPREDUCE-5209. Fix units in a ShuffleScheduler log message.
|
||||
(Tsuyoshi OZAWA via cdouglas)
|
||||
|
||||
Release 2.0.4-alpha - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -359,7 +359,7 @@ class ShuffleScheduler<K,V> {
|
|||
}
|
||||
}
|
||||
LOG.info(host + " freed by " + Thread.currentThread().getName() + " in " +
|
||||
(System.currentTimeMillis()-shuffleStart.get()) + "s");
|
||||
(System.currentTimeMillis()-shuffleStart.get()) + "ms");
|
||||
}
|
||||
|
||||
public synchronized void resetKnownMaps() {
|
||||
|
|
Loading…
Reference in New Issue