HDFS-3235. MiniDFSClusterManager doesn't correctly support -format option. Contributed by Henry Robinson.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1311556 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9597c81f35
commit
53dc8546d4
|
@ -122,6 +122,9 @@ Trunk (unreleased changes)
|
|||
factor is reduced after sync follwed by closing that file. (Ashish Singhi
|
||||
via umamahesh)
|
||||
|
||||
HDFS-3235. MiniDFSClusterManager doesn't correctly support -format option.
|
||||
(Henry Robinson via atm)
|
||||
|
||||
Release 2.0.0 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -68,6 +68,7 @@ public class MiniDFSClusterManager {
|
|||
private StartupOption dfsOpts;
|
||||
private String writeConfig;
|
||||
private Configuration conf;
|
||||
private boolean format;
|
||||
|
||||
private static final long SLEEP_INTERVAL_MS = 1000 * 60;
|
||||
|
||||
|
@ -138,6 +139,7 @@ public class MiniDFSClusterManager {
|
|||
dfs = new MiniDFSCluster.Builder(conf).nameNodePort(nameNodePort)
|
||||
.numDataNodes(numDataNodes)
|
||||
.startupOption(dfsOpts)
|
||||
.format(format)
|
||||
.build();
|
||||
dfs.waitActive();
|
||||
|
||||
|
@ -196,8 +198,13 @@ public class MiniDFSClusterManager {
|
|||
// HDFS
|
||||
numDataNodes = intArgument(cli, "datanodes", 1);
|
||||
nameNodePort = intArgument(cli, "nnport", 0);
|
||||
dfsOpts = cli.hasOption("format") ?
|
||||
StartupOption.FORMAT : StartupOption.REGULAR;
|
||||
if (cli.hasOption("format")) {
|
||||
dfsOpts = StartupOption.FORMAT;
|
||||
format = true;
|
||||
} else {
|
||||
dfsOpts = StartupOption.REGULAR;
|
||||
format = false;
|
||||
}
|
||||
|
||||
// Runner
|
||||
writeDetails = cli.getOptionValue("writeDetails");
|
||||
|
|
Loading…
Reference in New Issue