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 "liaoyuxiangqin (JIRA)" <ji...@apache.org> on 2018/01/19 03:01:00 UTC

[jira] [Created] (HDFS-13036) Reusing the volume storage ID obtained by replicaInfo

liaoyuxiangqin created HDFS-13036:
-------------------------------------

             Summary: Reusing the volume storage ID obtained by replicaInfo
                 Key: HDFS-13036
                 URL: https://issues.apache.org/jira/browse/HDFS-13036
             Project: Hadoop HDFS
          Issue Type: Improvement
          Components: datanode
    Affects Versions: 3.1.0
            Reporter: liaoyuxiangqin
            Assignee: liaoyuxiangqin


When i read the getBlockReports() of FsDatasetImpl class in datanode, i found the following case code could be more simplify and need't to obtained volume storage ID by replicaInfo again and again.

{code:title=FsDatasetImpl.java|borderStyle=solid}

switch(b.getState()) {
case FINALIZED:
case RBW:
case RWR:
 builders.get(b.getVolume().getStorageID()).add(b);
 break;
case RUR:
 ReplicaInfo orig = b.getOriginalReplica();
 builders.get(b.getVolume().getStorageID()).add(orig);
 break;
case TEMPORARY:
 break;
default:
 assert false : "Illegal ReplicaInfo state.";
}

{code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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