Package org.springframework.data.hadoop.fs

Examples of org.springframework.data.hadoop.fs.FsShell.mkdir()


  protected void initializeCounterIfNecessary() {
    if (!initialized) {
      FsShell fsShell = new FsShell(getFileSystem().getConf(), getFileSystem());
      try {
        if (!fsShell.test(getBasePath())) {
          fsShell.mkdir(getBasePath());
        }
        int maxCounter = 0;
        boolean foundFile = false;
        Collection<FileStatus> fileStats = fsShell.ls(this.getBasePath());
        for (FileStatus fileStatus : fileStats) {
View Full Code Here


          this.setCounter(maxCounter + 1);
        }
      }
      else {
        logger.info("Creating base path " + getBasePath());
        fsShell.mkdir(getBasePath());
      }
      initialized = true;
    }
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.