HDFS-10628. Log HDFS Balancer exit message to its own log. Contributed by Jiayi Zhou.

(cherry picked from commit c48e9d608c1daf7826f2e738c0a67d8eab79d8de)
This commit is contained in:
Akira Ajisaka 2016-07-15 11:42:44 -07:00
parent e34e1aa4fe
commit 6171498375

View File

@ -604,6 +604,8 @@ Result runOneIteration() {
if (!runDuringUpgrade && nnc.isUpgrading()) {
System.err.println("Balancer exiting as upgrade is not finalized, "
+ "please finalize the HDFS upgrade before running the balancer.");
LOG.error("Balancer exiting as upgrade is not finalized, "
+ "please finalize the HDFS upgrade before running the balancer.");
return newResult(ExitStatus.UNFINALIZED_UPGRADE, bytesLeftToMove, -1);
}