HDFS-11928. Segment overflow in FileDistributionCalculator. Contributed by LiXin Ge.

This commit is contained in:
Arpit Agarwal 2017-06-05 13:21:22 -07:00
parent e4e203e080
commit 835560983e

View File

@ -160,8 +160,8 @@ private void output() {
+ StringUtils.byteDesc(((long) (i == 0 ? 0 : i - 1) * steps))
+ ", "
+ StringUtils.byteDesc((long)
(i == distribution.length - 1 ? maxFileSize : i * steps))
+ "]\t" + distribution[i]);
(i == distribution.length - 1 ? maxFileSize :
(long) i * steps)) + "]\t" + distribution[i]);
} else {
out.print(((long) i * steps) + "\t" + distribution[i]);
}