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

shell scripts should not close stderr

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 2.0.2-alpha
    • 2.0.3-alpha
    • scripts
    • None
    • Reviewed

    Description

      The start-dfs.sh and stop-dfs.sh scripts close stderr for some subprocesses using the construct

      2>&-

      This is dangerous because child processes started up under this scenario will re-use filedescriptor 2 for opened files. Since libc and many other codepaths assume that filedescriptor 2 can be written to in error conditions, this can potentially result in data corruption.

      Much better to redirect stderr using the construct 2>/dev/null.

      Attachments

        1. hdfs4178.txt
          1 kB
          Andy Isaacson

        Activity

          People

            adi2 Andy Isaacson
            adi2 Andy Isaacson
            Votes:
            0 Vote for this issue
            Watchers:
            5 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: