You are viewing a plain text version of this content. The canonical link for it is here.
Posted to hdfs-dev@hadoop.apache.org by "steven-wugang (JIRA)" <ji...@apache.org> on 2017/06/29 03:30:00 UTC

[jira] [Created] (HDFS-12068) Modify judgment condition in function computeVolumeDataDensity,otherwise maybe divided by zero

steven-wugang created HDFS-12068:
------------------------------------

             Summary: Modify judgment condition in function computeVolumeDataDensity,otherwise maybe divided by zero
                 Key: HDFS-12068
                 URL: https://issues.apache.org/jira/browse/HDFS-12068
             Project: Hadoop HDFS
          Issue Type: Bug
            Reporter: steven-wugang


IN function computeVolumeDataDensity,there is a piece of code,as follow:
 public void computeVolumeDataDensity() {
     ...
	 if (volume.computeEffectiveCapacity() < 0) {
          skipMisConfiguredVolume(volume);
          continue;
        }
	....
	double dfsUsedRatio =
            truncateDecimals(volume.getUsed() /
                (double) volume.computeEffectiveCapacity());
 
    ....
}
Did not filter out the case that volume.computeEffectiveCapacity() is zero,maybe divided by zero behind.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

---------------------------------------------------------------------
To unsubscribe, e-mail: hdfs-dev-unsubscribe@hadoop.apache.org
For additional commands, e-mail: hdfs-dev-help@hadoop.apache.org