[ https://issues.apache.org/jira/browse/HDFS-529?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12740148#action_12740148 ]
Hudson commented on HDFS-529: ----------------------------- Integrated in Hadoop-Hdfs-trunk #41 (See [http://hudson.zones.apache.org/hudson/job/Hadoop-Hdfs-trunk/41/]) . Use BlockInfo instead of Block to avoid redundant block searches in BlockManager. Contributed by Konstantin Shvachko. > More redundant block searches in BlockManager. > ---------------------------------------------- > > Key: HDFS-529 > URL: https://issues.apache.org/jira/browse/HDFS-529 > Project: Hadoop HDFS > Issue Type: Improvement > Components: name-node > Affects Versions: 0.21.0 > Reporter: Konstantin Shvachko > Assignee: Konstantin Shvachko > Fix For: 0.21.0 > > Attachments: BlocksMap.patch, BlocksMap.patch > > > Found more redundant searches in {{BlockManager.addStoredBLock()}} and > {{BlockManager.getNodes(Block)}}. > The pattern here is that we first call {{BlocksMap.numNodes(Block)}} in order > to determine the size of the array of data-nodes. This is one search in > {{blocksMap}}. Then we call {{BlocksMap.nodeIterator(Block)}}, which also > performs a search. This is all not necessary because we already have the > block in the form of BlockInfo from {{blocksMap}} and do not need to search > for it. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.