Details
Description
The CLI MiniCluster, MiniHadoopClusterManager, says that by default it does not format its directories, and provides the -format option to specify that it should do so. However, it builds its MiniDFSCluster like:
dfs = new MiniDFSCluster.Builder(conf).nameNodePort(nnPort)
.nameNodeHttpPort(nnHttpPort).numDataNodes(numDataNodes)
.startupOption(dfsOpts).build();
MiniDFSCluster.Builder, by default, sets format to true, so even though the startupOption is REGULAR, it will still format regardless of whether or not the flag is supplied.
Attachments
Attachments
Issue Links
- breaks
-
HBASE-22490 Nightly client integration test fails with hadoop-3
- Resolved
- is depended upon by
-
HADOOP-15509 Release Hadoop 2.7.7
- Resolved