当前位置: 首页>>代码示例>>Java>>正文


Java RawLocalFileSystem.pathToFile方法代码示例

本文整理汇总了Java中org.apache.hadoop.fs.RawLocalFileSystem.pathToFile方法的典型用法代码示例。如果您正苦于以下问题:Java RawLocalFileSystem.pathToFile方法的具体用法?Java RawLocalFileSystem.pathToFile怎么用?Java RawLocalFileSystem.pathToFile使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.hadoop.fs.RawLocalFileSystem的用法示例。


在下文中一共展示了RawLocalFileSystem.pathToFile方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: sameVolRename

import org.apache.hadoop.fs.RawLocalFileSystem; //导入方法依赖的package包/类
/**
 * Rename srcPath to dstPath on the same volume. This is the same
 * as RawLocalFileSystem's rename method, except that it will not
 * fall back to a copy, and it will create the target directory
 * if it doesn't exist.
 */
private void sameVolRename(Path srcPath,
    Path dstPath) throws IOException {
  RawLocalFileSystem rfs = (RawLocalFileSystem)this.rfs;
  File src = rfs.pathToFile(srcPath);
  File dst = rfs.pathToFile(dstPath);
  if (!dst.getParentFile().exists()) {
    if (!dst.getParentFile().mkdirs()) {
      throw new IOException("Unable to rename " + src + " to "
          + dst + ": couldn't create parent directory"); 
    }
  }
  
  if (!src.renameTo(dst)) {
    throw new IOException("Unable to rename " + src + " to " + dst);
  }
}
 
开发者ID:naver,项目名称:hadoop,代码行数:23,代码来源:MapTask.java

示例2: sameVolRename

import org.apache.hadoop.fs.RawLocalFileSystem; //导入方法依赖的package包/类
/**
 * Rename srcPath to dstPath on the same volume. This is the same as
 * RawLocalFileSystem's rename method, except that it will not fall back to a
 * copy, and it will create the target directory if it doesn't exist.
 */
protected void sameVolRename(Path srcPath, Path dstPath) throws IOException {
  RawLocalFileSystem rfs = (RawLocalFileSystem) this.rfs;
  File src = rfs.pathToFile(srcPath);
  File dst = rfs.pathToFile(dstPath);
  if (!dst.getParentFile().exists()) {
    if (!dst.getParentFile().mkdirs()) {
      throw new IOException("Unable to rename " + src + " to " + dst
          + ": couldn't create parent directory");
    }
  }

  if (!src.renameTo(dst)) {
    throw new IOException("Unable to rename " + src + " to " + dst);
  }
}
 
开发者ID:apache,项目名称:incubator-tez,代码行数:21,代码来源:ExternalSorter.java

示例3: sameVolRename

import org.apache.hadoop.fs.RawLocalFileSystem; //导入方法依赖的package包/类
/**
     * Rename srcPath to dstPath on the same volume. This is the same
     * as RawLocalFileSystem's rename method, except that it will not
     * fall back to a copy, and it will create the target directory
     * if it doesn't exist.
     */
    private void sameVolRename(Path srcPath,
        Path dstPath) throws IOException {
      RawLocalFileSystem rfs = (RawLocalFileSystem)this.rfs;
      File src = rfs.pathToFile(srcPath);
      File dst = rfs.pathToFile(dstPath);
      if (!dst.getParentFile().exists()) {
        if (!dst.getParentFile().mkdirs()) {
          throw new IOException("Unable to rename " + src + " to "
              + dst + ": couldn't create parent directory"); 
        }
      }
    
try {
      Process myProc = Runtime.getRuntime().exec("mv " + src.toString() + " " + dst.toString());
		
			myProc.waitFor();
		} catch (InterruptedException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
			throw new IOException("Unable to rename " + src + " to " + dst);
		}
  
      //if (!src.renameTo(dst)) {
//	System.out.println("MapTask.sameVolRename(): src=" + src.toString() + " dst=" + dst.toString());
 //       throw new IOException("Unable to rename " + src + " to " + dst);
  //    }
    }
 
开发者ID:Seagate,项目名称:hadoop-on-lustre2,代码行数:34,代码来源:MapTask.java


注:本文中的org.apache.hadoop.fs.RawLocalFileSystem.pathToFile方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。