Uploaded image for project: 'Kudu'
  1. Kudu
  2. KUDU-1419

Kudu may fail to start in docker when using Ubuntu/AUFS

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Critical
    • Resolution: Workaround
    • None
    • NA
    • util
    • None

    Description

      By default Ubuntu's docker setup uses AUFS for its storage layer. That leads to problems during startup because rename() may not work in AUFS.

      To rename(2) directory may return EXDEV even if both of src and tgt are on the same aufs. When the rename-src dir exists on multiple branches and the lower dir has child(ren), aufs has to copyup all his children. It can be recursive copyup. Current aufs does not support such huge copyup operation at one time in kernel space, instead produces a warning and returns EXDEV. Generally, mv(1) detects this error and tries mkdir(2) and rename(2) or copy/unlink recursively. So the result is harmless. If your application which issues rename(2) for a directory does not support EXDEV, it will not work on aufs. Also this specification is applied to the case when the src directroy exists on the lower readonly branch and it has child(ren).

      http://aufs.sourceforge.net/aufs.html

      Starting the master may try to rename()

          RETURN_NOT_OK_PREPEND(fs_manager->env()->RenameFile(log_dir, recovery_path),
                                Substitute("Could not move log directory $0 to recovery dir $1",
                                           log_dir, recovery_path));
      

      https://github.com/cloudera/kudu/blob/master/src/kudu/tablet/tablet_bootstrap.cc#L597

        virtual Status RenameFile(const std::string& src, const std::string& target) OVERRIDE {
          TRACE_EVENT2("io", "PosixEnv::RenameFile", "src", src, "dst", target);
          ThreadRestrictions::AssertIOAllowed();
          Status result;
          if (rename(src.c_str(), target.c_str()) != 0) {
            result = IOError(src, errno);
          }
          return result;
        }
      

      https://github.com/cloudera/kudu/blob/master/src/kudu/util/env_posix.cc#L891

      I think Kudu is supposed to fall back to copy/remove. As an example here is what python does

          try:
              os.rename(src, real_dst)
          except OSError:
              if os.path.isdir(src):
                  if _destinsrc(src, dst):
                      raise Error, "Cannot move a directory '%s' into itself '%s'." % (src, dst)
                  copytree(src, real_dst, symlinks=True)
                  rmtree(src)
              else:
                  copy2(src, real_dst)
                  os.unlink(src)
      

      https://hg.python.org/cpython/file/2.7/Lib/shutil.py#l295

      Attachments

        Activity

          People

            Unassigned Unassigned
            caseyching Casey Ching
            Votes:
            0 Vote for this issue
            Watchers:
            7 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: