當前位置: 首頁>>代碼示例>>Java>>正文


Java FsShell.close方法代碼示例

本文整理匯總了Java中org.apache.hadoop.fs.FsShell.close方法的典型用法代碼示例。如果您正苦於以下問題:Java FsShell.close方法的具體用法?Java FsShell.close怎麽用?Java FsShell.close使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.apache.hadoop.fs.FsShell的用法示例。


在下文中一共展示了FsShell.close方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: main

import org.apache.hadoop.fs.FsShell; //導入方法依賴的package包/類
public static void main(final String[] argv) throws Exception {
    FsShell shell = newShellInstance();
    Configuration conf = new Configuration(false);
    conf.setQuietMode(false);
    shell.setConf(conf);
    int res;
    try {
        res = ToolRunner.run(shell, argv);
    } finally {
        shell.close();
    }
    System.exit(res);
}
 
開發者ID:joyent,項目名稱:hadoop-manta,代碼行數:14,代碼來源:FsShellMantaWrapper.java

示例2: copyFile

import org.apache.hadoop.fs.FsShell; //導入方法依賴的package包/類
/**
 * Copies a files.
 * @param srcFile File to copy from.
 * @param destFile File to copy to. The file should not exist.
 * @throws IOException if there is an error copying the file.
 */
private static void copyFile(Path srcFile, Path destFile) throws IOException {
  String[] copyArgs = {"-cp", srcFile.toString(), destFile.toString()};

  FsShell shell = new FsShell();
  try {
    LOG.debug("Using shell to copy with args " + Arrays.asList(copyArgs));
    ToolRunner.run(shell, copyArgs);
  } catch (Exception e) {
    throw new IOException(e);
  } finally {
    shell.close();
  }
}
 
開發者ID:airbnb,項目名稱:reair,代碼行數:20,代碼來源:MetastoreReplicationJob.java

示例3: testChmod

import org.apache.hadoop.fs.FsShell; //導入方法依賴的package包/類
/**
 * Test chmod.
 */
void testChmod(Configuration conf, FileSystem fs, String chmodDir)
  throws IOException {
  FsShell shell = new FsShell();
  shell.setConf(conf);

  try {
    //first make dir
    Path dir = new Path(chmodDir);
    fs.delete(dir, true);
    fs.mkdirs(dir);

    runCmd(shell, "-chmod", "u+rwx,g=rw,o-rwx", chmodDir);
    assertEquals("rwxrw----",
                 fs.getFileStatus(dir).getPermission().toString());

    //create an empty file
    Path file = new Path(chmodDir, "file");
    TestDFSShell.writeFile(fs, file);

    //test octal mode
    runCmd(shell, "-chmod", "644", file.toString());
    assertEquals("rw-r--r--",
                 fs.getFileStatus(file).getPermission().toString());

    //test recursive
    runCmd(shell, "-chmod", "-R", "a+rwX", chmodDir);
    assertEquals("rwxrwxrwx",
                 fs.getFileStatus(dir).getPermission().toString());
    assertEquals("rw-rw-rw-",
                 fs.getFileStatus(file).getPermission().toString());

    fs.delete(dir, true);
  } finally {
    try {
      fs.close();
      shell.close();
    } catch (IOException ignored) {}
  }
}
 
開發者ID:rhli,項目名稱:hadoop-EAR,代碼行數:43,代碼來源:TestDFSShell.java

示例4: testChmod

import org.apache.hadoop.fs.FsShell; //導入方法依賴的package包/類
/**
 * Test chmod.
 */
void testChmod(Configuration conf, FileSystem fs, String chmodDir) 
                                                  throws IOException {
  FsShell shell = new FsShell();
  shell.setConf(conf);
  
  try {
    //first make dir
    Path dir = new Path(chmodDir);
    fs.delete(dir, true);
    fs.mkdirs(dir);

    confirmPermissionChange(/* Setting */ "u+rwx,g=rw,o-rwx",
                           /* Should give */ "rwxrw----", fs, shell, dir);

    //create an empty file
    Path file = new Path(chmodDir, "file");
    TestDFSShell.writeFile(fs, file);

    //test octal mode
    confirmPermissionChange("644", "rw-r--r--", fs, shell, file);

    //test recursive
    runCmd(shell, "-chmod", "-R", "a+rwX", chmodDir);
    assertEquals("rwxrwxrwx",
        fs.getFileStatus(dir).getPermission().toString());
    assertEquals("rw-rw-rw-",
        fs.getFileStatus(file).getPermission().toString());

    // Skip "sticky bit" tests on Windows.
    //
    if (!Path.WINDOWS) {
      // test sticky bit on directories
      Path dir2 = new Path(dir, "stickybit");
      fs.mkdirs(dir2);
      LOG.info("Testing sticky bit on: " + dir2);
      LOG.info("Sticky bit directory initial mode: " +
          fs.getFileStatus(dir2).getPermission());

      confirmPermissionChange("u=rwx,g=rx,o=rx", "rwxr-xr-x", fs, shell, dir2);

      confirmPermissionChange("+t", "rwxr-xr-t", fs, shell, dir2);

      confirmPermissionChange("-t", "rwxr-xr-x", fs, shell, dir2);

      confirmPermissionChange("=t", "--------T", fs, shell, dir2);

      confirmPermissionChange("0000", "---------", fs, shell, dir2);

      confirmPermissionChange("1666", "rw-rw-rwT", fs, shell, dir2);

      confirmPermissionChange("777", "rwxrwxrwt", fs, shell, dir2);

      fs.delete(dir2, true);
    } else {
      LOG.info("Skipped sticky bit tests on Windows");
    }

    fs.delete(dir, true);

  } finally {
    try {
      fs.close();
      shell.close();
    } catch (IOException ignored) {}
  }
}
 
開發者ID:ict-carch,項目名稱:hadoop-plus,代碼行數:70,代碼來源:TestDFSShell.java

示例5: testChmod

import org.apache.hadoop.fs.FsShell; //導入方法依賴的package包/類
/**
 * Test chmod.
 */
void testChmod(Configuration conf, FileSystem fs, String chmodDir)
    throws IOException {
  FsShell shell = new FsShell();
  shell.setConf(conf);
  
  try {
    //first make dir
    Path dir = new Path(chmodDir);
    fs.delete(dir, true);
    fs.mkdirs(dir);

    confirmPermissionChange(/* Setting */ "u+rwx,g=rw,o-rwx",
                           /* Should give */ "rwxrw----", fs, shell, dir);

    //create an empty file
    Path file = new Path(chmodDir, "file");
    TestDFSShell.writeFile(fs, file);

    //test octal mode
    confirmPermissionChange("644", "rw-r--r--", fs, shell, file);

    //test recursive
    runCmd(shell, "-chmod", "-R", "a+rwX", chmodDir);
    assertEquals("rwxrwxrwx",
        fs.getFileStatus(dir).getPermission().toString());
    assertEquals("rw-rw-rw-",
        fs.getFileStatus(file).getPermission().toString());

    // test sticky bit on directories
    Path dir2 = new Path(dir, "stickybit");
    fs.mkdirs(dir2);
    LOG.info("Testing sticky bit on: " + dir2);
    LOG.info("Sticky bit directory initial mode: " +
        fs.getFileStatus(dir2).getPermission());

    confirmPermissionChange("u=rwx,g=rx,o=rx", "rwxr-xr-x", fs, shell, dir2);

    confirmPermissionChange("+t", "rwxr-xr-t", fs, shell, dir2);

    confirmPermissionChange("-t", "rwxr-xr-x", fs, shell, dir2);

    confirmPermissionChange("=t", "--------T", fs, shell, dir2);

    confirmPermissionChange("0000", "---------", fs, shell, dir2);

    confirmPermissionChange("1666", "rw-rw-rwT", fs, shell, dir2);

    confirmPermissionChange("777", "rwxrwxrwt", fs, shell, dir2);

    fs.delete(dir2, true);
    fs.delete(dir, true);

  } finally {
    try {
      fs.close();
      shell.close();
    } catch (IOException ignored) {
    }
  }
}
 
開發者ID:hopshadoop,項目名稱:hops,代碼行數:64,代碼來源:TestDFSShell.java


注:本文中的org.apache.hadoop.fs.FsShell.close方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。