Java Code Examples for org.apache.hadoop.hdfs.server.common.HdfsServerConstants.StartupOption#getName()

The following examples show how to use org.apache.hadoop.hdfs.server.common.HdfsServerConstants.StartupOption#getName() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: MiniDFSCluster.java    From hadoop with Apache License 2.0 5 votes vote down vote up
private static String[] createArgs(StartupOption operation) {
  if (operation == StartupOption.ROLLINGUPGRADE) {
    return new String[]{operation.getName(),
        operation.getRollingUpgradeStartupOption().name()};
  }
  String[] args = (operation == null ||
      operation == StartupOption.FORMAT ||
      operation == StartupOption.REGULAR) ?
          new String[] {} : new String[] {operation.getName()};
  return args;
}
 
Example 2
Source File: MiniDFSCluster.java    From big-c with Apache License 2.0 5 votes vote down vote up
private static String[] createArgs(StartupOption operation) {
  if (operation == StartupOption.ROLLINGUPGRADE) {
    return new String[]{operation.getName(),
        operation.getRollingUpgradeStartupOption().name()};
  }
  String[] args = (operation == null ||
      operation == StartupOption.FORMAT ||
      operation == StartupOption.REGULAR) ?
          new String[] {} : new String[] {operation.getName()};
  return args;
}
 
Example 3
Source File: TestBackupNode.java    From hadoop with Apache License 2.0 4 votes vote down vote up
static String getBackupNodeDir(StartupOption t, int idx) {
  return BASE_DIR + "name" + t.getName() + idx + "/";
}
 
Example 4
Source File: TestBackupNode.java    From big-c with Apache License 2.0 4 votes vote down vote up
static String getBackupNodeDir(StartupOption t, int idx) {
  return BASE_DIR + "name" + t.getName() + idx + "/";
}