HDFS-9871. "Bytes Being Moved" -ve(-1 B) when cluster was already balanced. (Contributed by Brahma Reddy Battulla)

This commit is contained in:
Vinayakumar B 2016-03-29 11:25:41 +08:00
parent 0ef8bbfd87
commit 1f004b3367

View File

@ -583,7 +583,7 @@ Result runOneIteration() {
final long bytesLeftToMove = init(reports);
if (bytesLeftToMove == 0) {
System.out.println("The cluster is balanced. Exiting...");
return newResult(ExitStatus.SUCCESS, bytesLeftToMove, -1);
return newResult(ExitStatus.SUCCESS, bytesLeftToMove, 0);
} else {
LOG.info( "Need to move "+ StringUtils.byteDesc(bytesLeftToMove)
+ " to make the cluster balanced." );