Blocks Miss on the NameNode UI After the Successful Rollback
Question
Why are some blocks missing on the NameNode UI after the rollback is successful?
Answer
This problem occurs because blocks with new IDs or genstamps may exist on the DataNode. The block files in the DataNode may have different generation flags and lengths from those in the rollback images of the NameNode. Therefore, the NameNode rejects these blocks in the DataNode and marks the files as damaged.
Scenarios:
- Rollback started:
The status will be rolled back to the status before the upgrade. That is, file X in NameNode will have A bytes, but block files in DataNode will have A + B bytes.
Recovery procedure:
- Obtain the list of damaged files from NameNode web UI or run the following command to obtain:
- Run the following command to delete unnecessary files:
hdfs fsck <corrupt file path> - delete
Deleting a file is a high-risk operation. Ensure that the files are no longer needed before performing this operation.
- For the required files, run the fsck command to obtain the block list and block sequence.
- In the block sequence table provided, use the block ID to search for the data directory in the DataNode and download the corresponding block from the DataNode.
- Write all such block files in appending mode based on the sequence to construct the original file.
File 1--> blk_1, blk_2, blk_3
Create a file by combining the contents of all three block files from the same sequence.
- Delete the old file from HDFS and rewrite the new file.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot