Details
-
New Feature
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
0.23.0
-
None
-
Reviewed
Description
During the NameNode startup process, we load an image, and then apply edit logs to it until we believe that we have all the latest changes. Unfortunately, if there is an I/O error while reading any of these files, in most cases, we simply abort the startup process. We should try harder to locate a readable edit log and/or image file.
There are three main use cases for this feature:
1. If the operating system does not honor fsync (usually due to a misconfiguration), a file may end up in an inconsistent state.
2. In certain older releases where we did not use fallocate() or similar to pre-reserve blocks, a disk full condition may cause a truncated log in one edit directory.
3. There may be a bug in HDFS which results in some of the data directories receiving corrupt data, but not all. This is the least likely use case.
Proposed changes to normal NN startup
- We should try a different FSImage if we can't load the first one we try.
- We should examine other FSEditLogs if we can't load the first one(s) we try.
- We should fail if we can't find EditLogs that would bring us up to what we believe is the latest transaction ID.
Proposed changes to recovery mode NN startup:
we should list out all the available storage directories and allow the operator to select which one he wants to use.
Something like this:
Multiple storage directories found. 1. /foo/bar edits__curent__XYZ size:213421345 md5:2345345 image size:213421345 md5:2345345 2. /foo/baz edits__curent__XYZ size:213421345 md5:2345345345 image size:213421345 md5:2345345 Which one would you like to use? (1/2)
As usual in recovery mode, we want to be flexible about error handling. In this case, this means that we should NOT fail if we can't find EditLogs that would bring us up to what we believe is the latest transaction ID.
Not addressed by this feature
This feature will not address the case where an attempt to access the NameNode name directory or directories hangs because of an I/O error. This may happen, for example, when trying to load an image from a hard-mounted NFS directory, when the NFS server has gone away. Just as now, the operator will have to notice this problem and take steps to correct it.
Attachments
Attachments
Issue Links
- breaks
-
HDFS-3614 Revert unused MiniDFSCluster constructor from HDFS-3049
- Resolved
- is related to
-
HDFS-3277 fail over to loading a different FSImage if the first one we try to load is corrupt
- Closed
-
HDFS-3440 should more effectively limit stream memory consumption when reading corrupt edit logs
- Closed
-
HDFS-3853 Port MiniDFSCluster enableManagedDfsDirsRedundancy option to branch-2
- Closed
-
HDFS-3004 Implement Recovery Mode
- Closed
- relates to
-
HDFS-2797 Fix misuses of InputStream#skip in the edit log code
- Closed
- supercedes
-
HDFS-2982 Startup performance suffers when there are many edit log segments
- Closed