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 == 0 ? 0 : i - 1) * steps))
|
||||||
+ ", "
|
+ ", "
|
||||||
+ StringUtils.byteDesc((long)
|
+ StringUtils.byteDesc((long)
|
||||||
(i == distribution.length - 1 ? maxFileSize : i * steps))
|
(i == distribution.length - 1 ? maxFileSize :
|
||||||
+ "]\t" + distribution[i]);
|
(long) i * steps)) + "]\t" + distribution[i]);
|
||||||
} else {
|
} else {
|
||||||
out.print(((long) i * steps) + "\t" + distribution[i]);
|
out.print(((long) i * steps) + "\t" + distribution[i]);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user