HDFS-6447. balancer should timestamp the completion message. Contributed by Juan Yu.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1598412 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
72aaab255d
commit
e3bd43766f
|
@ -134,6 +134,9 @@ Release 2.5.0 - UNRELEASED
|
|||
|
||||
HDFS-6356. Fix typo in DatanodeLayoutVersion. (Tulasi G via wang)
|
||||
|
||||
HDFS-6447. balancer should timestamp the completion message.
|
||||
(Juan Yu via wang).
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
HDFS-6214. Webhdfs has poor throughput for files >2GB (daryn)
|
||||
|
|
|
@ -1552,6 +1552,7 @@ public class Balancer {
|
|||
System.out.println(e + ". Exiting ...");
|
||||
return ReturnStatus.INTERRUPTED.code;
|
||||
} finally {
|
||||
System.out.format("%-24s ", DateFormat.getDateTimeInstance().format(new Date()));
|
||||
System.out.println("Balancing took " + time2Str(Time.now()-startTime));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue