You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-issues@hadoop.apache.org by "umamaheswararao (via GitHub)" <gi...@apache.org> on 2023/06/14 23:28:24 UTC

[GitHub] [hadoop] umamaheswararao commented on pull request #5743: HDFS-17049. EC: Fix duplicate block group IDs generated by SequentialBlockGroupIdGenerator.

umamaheswararao commented on PR #5743:
URL: https://github.com/apache/hadoop/pull/5743#issuecomment-1592121456

   Quite surprised to see how this can happen, we have write lock while getting nextBlockID
   
   ```
   private long nextBlockId(BlockType blockType) throws IOException {
     assert hasWriteLock();
     checkNameNodeSafeMode(“Cannot get next block ID”);
     final long blockId = blockManager.nextBlockId(blockType);
     getEditLog().logAllocateBlockId(blockId);
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: common-issues-unsubscribe@hadoop.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


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