[ 
https://issues.apache.org/jira/browse/HDFS-5956?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13915163#comment-13915163
 ] 

Akira AJISAKA commented on HDFS-5956:
-------------------------------------

Thanks for reviewing!
Committers, the patch is now ready to merge.

> A file size is multiplied by the replication factor in 'hdfs oiv -p 
> FileDistribution' option
> --------------------------------------------------------------------------------------------
>
>                 Key: HDFS-5956
>                 URL: https://issues.apache.org/jira/browse/HDFS-5956
>             Project: Hadoop HDFS
>          Issue Type: Sub-task
>          Components: tools
>    Affects Versions: 3.0.0, 2.4.0
>            Reporter: Akira AJISAKA
>            Assignee: Akira AJISAKA
>              Labels: newbie
>         Attachments: HDFS-5956.2.patch, HDFS-5956.3.patch, HDFS-5956.patch
>
>
> In FileDistributionCalculator.java, 
> {code}
>         long fileSize = 0;
>         for (BlockProto b : f.getBlocksList()) {
>           fileSize += b.getNumBytes() * f.getReplication();
>         }
>         maxFileSize = Math.max(fileSize, maxFileSize);
>         totalSpace += fileSize;
> {code}
> should be
> {code}
>         long fileSize = 0;
>         for (BlockProto b : f.getBlocksList()) {
>           fileSize += b.getNumBytes();
>         }
>         maxFileSize = Math.max(fileSize, maxFileSize);
>         totalSpace += fileSize * f.getReplication();
> {code}



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)

Reply via email to