[ 
https://issues.apache.org/jira/browse/HDFS-16754?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17598331#comment-17598331
 ] 

ASF GitHub Bot commented on HDFS-16754:
---------------------------------------

ZanderXu opened a new pull request, #4840:
URL: https://github.com/apache/hadoop/pull/4840

   ### Description of PR
   During looking into the logic of RecoverLease, I guess there is a bug:
   ```
   int nrCompleteBlocks;
   BlockInfo curBlock = null;
   for(nrCompleteBlocks = 0; nrCompleteBlocks < nrBlocks; nrCompleteBlocks++) {
     curBlock = blocks[nrCompleteBlocks];
     if(!curBlock.isComplete())
       break;
     // Why?
     assert blockManager.hasMinStorage(curBlock) :
             "A COMPLETE block is not minimally replicated in " + src;
   } 
   ```
   RecoverLease just try to align all replicas of the last block of one 
UnderConstruct file.
   So if the UC file with some completed blocks, which may missed all replicas, 
should be able to recoverLease.
   
   




> UnderConstruct file with missingBlock should be able to recover lease
> ---------------------------------------------------------------------
>
>                 Key: HDFS-16754
>                 URL: https://issues.apache.org/jira/browse/HDFS-16754
>             Project: Hadoop HDFS
>          Issue Type: Bug
>            Reporter: ZanderXu
>            Assignee: ZanderXu
>            Priority: Major
>
> During looking into the logic of RecoverLease, I guess there is a bug:
> {code:java}
> int nrCompleteBlocks;
> BlockInfo curBlock = null;
> for(nrCompleteBlocks = 0; nrCompleteBlocks < nrBlocks; nrCompleteBlocks++) {
>   curBlock = blocks[nrCompleteBlocks];
>   if(!curBlock.isComplete())
>     break;
>   // Why?
>   assert blockManager.hasMinStorage(curBlock) :
>           "A COMPLETE block is not minimally replicated in " + src;
> } {code}
> RecoverLease just try to align all replicas of the last block of one 
> UnderConstruct file.
> So if the UC file with some completed blocks, which may missed all replicas, 
> should be able to recoverLease.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to