HDFS-11928. Segment overflow in FileDistributionCalculator. Contributed by LiXin Ge.
This commit is contained in:
parent
e4e203e080
commit
835560983e
@ -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]);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user