HDFS-15174. Optimize ReplicaCachingGetSpaceUsed by reducing unnecessary io operations. Contributed by Lisheng Sun.

This commit is contained in:
Wei-Chiu Chuang 2020-02-24 13:37:11 -08:00
parent 72fa9c7f1b
commit 1c5d2f1fdc
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ protected void refresh() {
for (ReplicaInfo replicaInfo : replicaInfos) {
if (Objects.equals(replicaInfo.getVolume().getStorageID(),
volume.getStorageID())) {
dfsUsed += replicaInfo.getBlockDataLength();
dfsUsed += replicaInfo.getBytesOnDisk();
dfsUsed += replicaInfo.getMetadataLength();
count++;
}