Uploaded image for project: 'Hadoop HDFS'
  1. Hadoop HDFS
  2. HDFS-1595

DFSClient may incorrectly detect datanode failure

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Critical
    • Resolution: Duplicate
    • None
    • HDFS-9178
    • datanode, hdfs-client
    • None

    Description

      Suppose a source datanode S is writing to a destination datanode D in a write pipeline. We have an implicit assumption that if S catches an exception when it is writing to D, then D is faulty and S is fine. As a result, DFSClient will take out D from the pipeline, reconstruct the write pipeline with the remaining datanodes and then continue writing .

      However, we find a case that the faulty machine F is indeed S but not D. In the case we found, F has a faulty network interface (or a faulty switch port) in such a way that the faulty network interface works fine when transferring a small amount of data, say 1MB, but it often fails when transferring a large amount of data, say 100MB.

      It is even worst if F is the first datanode in the pipeline. Consider the following:

      1. DFSClient creates a pipeline with three datanodes. The first datanode is F.
      2. F catches an IOException when writing to the second datanode. Then, F reports the second datanode has error.
      3. DFSClient removes the second datanode from the pipeline and continue writing with the remaining datanode(s).
      4. The pipeline now has two datanodes but (2) and (3) repeat.
      5. Now, only F remains in the pipeline. DFSClient continues writing with one replica in F.
      6. The write succeeds and DFSClient is able to close the file successfully.
      7. The block is under replicated. The NameNode schedules replication from F to some other datanode D.
      8. The replication fails for the same reason. D reports to the NameNode that the replica in F is corrupted.
      9. The NameNode marks the replica in F is corrupted.
      10. The block is corrupted since no replica is available.

      We were able to manually divide the replicas into small files and copy them out from F without fixing the hardware. The replicas seems uncorrupted. This is a data availability problem.

      Attachments

        1. hdfs-1595-idea.txt
          1 kB
          Todd Lipcon

        Issue Links

          Activity

            People

              Unassigned Unassigned
              szetszwo Tsz-wo Sze
              Votes:
              1 Vote for this issue
              Watchers:
              13 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: