Uploaded image for project: 'Hive'
  1. Hive
  2. HIVE-23518

Tez may skip file permission update on intermediate output

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Major
    • Resolution: Invalid
    • None
    • None
    • None
    • None

    Description

      Before updating file permissions TEZ check if the permission change is needed with the following conditional:

      if (!SPILL_FILE_PERMS.equals(SPILL_FILE_PERMS.applyUMask(FsPermission.getUMask(conf)))) {
        rfs.setPermission(filename, SPILL_FILE_PERMS);
      } 

      If the config object is changing in the background then setPermission() call will be skipped.

      The rfs file system is always a local file system so there is no need to do this check beforehand (it doesn't generate an additional NameNode call).

      rfs = ((LocalFileSystem)FileSystem.getLocal(this.conf)).getRaw(); 

       We can remove the if statement and do the permission change unconditionally.

      Attachments

        Issue Links

          Activity

            People

              amagyar Attila Magyar
              amagyar Attila Magyar
              Votes:
              0 Vote for this issue
              Watchers:
              1 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: