Uploaded image for project: 'Hadoop Common'
  1. Hadoop Common
  2. HADOOP-8564

Port and extend Hadoop native libraries for Windows to address datanode concurrent reading and writing issue

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • 1-win
    • 1-win
    • io
    • None
    • Reviewed

    Description

      HDFS files are made up of blocks. First, let’s look at writing. When the data is written to datanode, an active or temporary file is created to receive packets. After the last packet for the block is received, we will finalize the block. One step during finalization is to rename the block file to a new directory. The relevant code can be found via the call sequence: FSDataSet.finalizeBlockInternal -> FSDir.addBlock.

       
              if ( ! metaData.renameTo( newmeta ) ||
                  ! src.renameTo( dest ) ) {
                throw new IOException( "could not move files for " + b +
                                       " from tmp to " + 
                                       dest.getAbsolutePath() );
              }
      

      Let’s then switch to reading. On HDFS, it is expected the client can also read these unfinished blocks. So when the read calls from client reach datanode, the datanode will open an input stream on the unfinished block file.

      The problem comes in when the file is opened for reading while the datanode receives last packet from client and try to rename the finished block file. This operation will succeed on Linux, but not on Windows . The behavior can be modified on Windows to open the file with FILE_SHARE_DELETE flag on, i.e. sharing the delete (including renaming) permission with other processes while opening the file. There is also a Java bug (id 6357433) reported a while back on this. However, since this behavior exists for Java on Windows since JDK 1.0, the Java developers do not want to break the backward compatibility on this behavior. Instead, a new file system API is proposed in JDK 7.

      As outlined in the Java forum by the Java developer (kbr), there are three ways to fix the problem:

      1. Use different mechanism in the application in dealing with files.
      2. Create a new implementation of InputStream abstract class using Windows native code.
      3. Patch JDK with a private patch that alters FileInputStream behavior.

      For the third option, it cannot fix the problem for users using Oracle JDK.

      We discussed some options for the first approach. For example one option is to use two phase renaming, i.e. first hardlink; then remove the old hardlink when read is finished. This option was thought to be rather pervasive. Another option discussed is to change the HDFS behavior on Windows by not allowing client reading unfinished blocks. However this behavior change is thought to be problematic and may affect other application build on top of HDFS.

      For all the reasons discussed above, we will use the second approach to address the problem.

      If there are better options to fix the problem, we would also like to hear about them.

      Attachments

        1. HADOOP-8564-branch-1-win.patch
          77 kB
          Suresh Srinivas
        2. HADOOP-8564-branch-1-win.patch
          77 kB
          Chuan Liu
        3. HADOOP-8564-branch-1-win-newfiles.patch
          10 kB
          Chuan Liu

        Issue Links

          Activity

            People

              chuanliu Chuan Liu
              chuanliu Chuan Liu
              Votes:
              0 Vote for this issue
              Watchers:
              5 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: