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 "Jing Zhao (JIRA)" <ji...@apache.org> on 2016/03/01 00:01:18 UTC

[jira] [Created] (HDFS-9876) shouldProcessOverReplicated should not count number of pending replicas

Jing Zhao created HDFS-9876:
-------------------------------

             Summary: shouldProcessOverReplicated should not count number of pending replicas
                 Key: HDFS-9876
                 URL: https://issues.apache.org/jira/browse/HDFS-9876
             Project: Hadoop HDFS
          Issue Type: Sub-task
            Reporter: Takuya Fukudome
            Assignee: Jing Zhao


Currently when checking if we should process over-replicated block in {{addStoredBlock}}, we count both the number of reported replicas and pending replicas. However, {{processOverReplicatedBlock}} chooses excess replicas only among all the reported storages of the block. So in a situation where we have over-replicated replica/internal blocks which only reside in the pending queue, we will not be able to choose any extra replica to delete.

For contiguous blocks, this causes {{chooseExcessReplicasContiguous}} to do nothing. But for striped blocks, this may cause endless loop in {{chooseExcessReplicasStriped}} in the following while loop:
{code}
      while (candidates.size() > 1) {
        List<DatanodeStorageInfo> replicasToDelete = placementPolicy
            .chooseReplicasToDelete(nonExcess, candidates, (short) 1,
                excessTypes, null, null);
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)