HDFS-2591. MiniDFSCluster support to mix and match federation with HA. Contributed by Todd Lipcon.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/HDFS-1623@1208297 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ee97365f58
commit
bb91ebb53c
|
@ -25,3 +25,5 @@ HDFS-2523. Small NN fixes to include HAServiceProtocol and prevent NPE on shutdo
|
||||||
HDFS-2577. NN fails to start since it tries to start secret manager in safemode. (todd)
|
HDFS-2577. NN fails to start since it tries to start secret manager in safemode. (todd)
|
||||||
|
|
||||||
HDFS-2582. Scope dfs.ha.namenodes config by nameservice (todd)
|
HDFS-2582. Scope dfs.ha.namenodes config by nameservice (todd)
|
||||||
|
|
||||||
|
HDFS-2591. MiniDFSCluster support to mix and match federation with HA (todd)
|
||||||
|
|
|
@ -571,6 +571,12 @@ public class DFSUtil {
|
||||||
public InetSocketAddress getAddress() {
|
public InetSocketAddress getAddress() {
|
||||||
return addr;
|
return addr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "ConfiguredNNAddress[nsId=" + nameserviceId + ";" +
|
||||||
|
"nnId=" + namenodeId + ";addr=" + addr + "]";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -32,6 +32,7 @@ import java.nio.channels.FileChannel;
|
||||||
import java.security.PrivilegedExceptionAction;
|
import java.security.PrivilegedExceptionAction;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
|
import java.util.List;
|
||||||
import java.util.Random;
|
import java.util.Random;
|
||||||
|
|
||||||
import org.apache.commons.logging.Log;
|
import org.apache.commons.logging.Log;
|
||||||
|
@ -41,7 +42,13 @@ import org.apache.hadoop.classification.InterfaceStability;
|
||||||
import org.apache.hadoop.conf.Configuration;
|
import org.apache.hadoop.conf.Configuration;
|
||||||
import org.apache.hadoop.fs.FileSystem;
|
import org.apache.hadoop.fs.FileSystem;
|
||||||
import org.apache.hadoop.fs.FileUtil;
|
import org.apache.hadoop.fs.FileUtil;
|
||||||
|
import org.apache.hadoop.fs.Path;
|
||||||
|
|
||||||
import static org.apache.hadoop.hdfs.DFSConfigKeys.*;
|
import static org.apache.hadoop.hdfs.DFSConfigKeys.*;
|
||||||
|
|
||||||
|
import org.apache.hadoop.ha.HAServiceProtocol;
|
||||||
|
import org.apache.hadoop.ha.ServiceFailedException;
|
||||||
|
import org.apache.hadoop.hdfs.MiniDFSNNTopology.NNConf;
|
||||||
import org.apache.hadoop.hdfs.protocol.Block;
|
import org.apache.hadoop.hdfs.protocol.Block;
|
||||||
import org.apache.hadoop.hdfs.protocol.BlockListAsLongs;
|
import org.apache.hadoop.hdfs.protocol.BlockListAsLongs;
|
||||||
import org.apache.hadoop.hdfs.protocol.ClientProtocol;
|
import org.apache.hadoop.hdfs.protocol.ClientProtocol;
|
||||||
|
@ -65,6 +72,7 @@ import org.apache.hadoop.hdfs.server.protocol.DatanodeRegistration;
|
||||||
import org.apache.hadoop.hdfs.server.protocol.NamenodeProtocol;
|
import org.apache.hadoop.hdfs.server.protocol.NamenodeProtocol;
|
||||||
import org.apache.hadoop.hdfs.server.protocol.NamenodeProtocols;
|
import org.apache.hadoop.hdfs.server.protocol.NamenodeProtocols;
|
||||||
import org.apache.hadoop.hdfs.tools.DFSAdmin;
|
import org.apache.hadoop.hdfs.tools.DFSAdmin;
|
||||||
|
import org.apache.hadoop.ipc.RPC;
|
||||||
import org.apache.hadoop.metrics2.lib.DefaultMetricsSystem;
|
import org.apache.hadoop.metrics2.lib.DefaultMetricsSystem;
|
||||||
import org.apache.hadoop.net.DNSToSwitchMapping;
|
import org.apache.hadoop.net.DNSToSwitchMapping;
|
||||||
import org.apache.hadoop.net.NetUtils;
|
import org.apache.hadoop.net.NetUtils;
|
||||||
|
@ -77,6 +85,11 @@ import org.apache.hadoop.tools.GetUserMappingsProtocol;
|
||||||
import org.apache.hadoop.util.StringUtils;
|
import org.apache.hadoop.util.StringUtils;
|
||||||
import org.apache.hadoop.util.ToolRunner;
|
import org.apache.hadoop.util.ToolRunner;
|
||||||
|
|
||||||
|
import com.google.common.base.Joiner;
|
||||||
|
import com.google.common.base.Preconditions;
|
||||||
|
import com.google.common.collect.Lists;
|
||||||
|
import com.google.common.io.Files;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This class creates a single-process DFS cluster for junit testing.
|
* This class creates a single-process DFS cluster for junit testing.
|
||||||
* The data directories for non-simulated DFS are under the testing directory.
|
* The data directories for non-simulated DFS are under the testing directory.
|
||||||
|
@ -102,7 +115,6 @@ public class MiniDFSCluster {
|
||||||
private int nameNodePort = 0;
|
private int nameNodePort = 0;
|
||||||
private int nameNodeHttpPort = 0;
|
private int nameNodeHttpPort = 0;
|
||||||
private final Configuration conf;
|
private final Configuration conf;
|
||||||
private int numNameNodes = 1;
|
|
||||||
private int numDataNodes = 1;
|
private int numDataNodes = 1;
|
||||||
private boolean format = true;
|
private boolean format = true;
|
||||||
private boolean manageNameDfsDirs = true;
|
private boolean manageNameDfsDirs = true;
|
||||||
|
@ -114,21 +126,12 @@ public class MiniDFSCluster {
|
||||||
private String clusterId = null;
|
private String clusterId = null;
|
||||||
private boolean waitSafeMode = true;
|
private boolean waitSafeMode = true;
|
||||||
private boolean setupHostsFile = false;
|
private boolean setupHostsFile = false;
|
||||||
private boolean federation = false;
|
private MiniDFSNNTopology nnTopology = null;
|
||||||
|
|
||||||
public Builder(Configuration conf) {
|
public Builder(Configuration conf) {
|
||||||
this.conf = conf;
|
this.conf = conf;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* default false - non federated cluster
|
|
||||||
* @param val
|
|
||||||
* @return Builder object
|
|
||||||
*/
|
|
||||||
public Builder federation (boolean val){
|
|
||||||
this.federation = val;
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
/**
|
/**
|
||||||
* Default: 0
|
* Default: 0
|
||||||
*/
|
*/
|
||||||
|
@ -145,14 +148,6 @@ public class MiniDFSCluster {
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Default: 1
|
|
||||||
*/
|
|
||||||
public Builder numNameNodes(int val) {
|
|
||||||
this.numNameNodes = val;
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Default: 1
|
* Default: 1
|
||||||
*/
|
*/
|
||||||
|
@ -242,6 +237,16 @@ public class MiniDFSCluster {
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Default: a single namenode.
|
||||||
|
* See {@link MiniDFSNNTopology#simpleFederatedTopology(int)} to set up
|
||||||
|
* federated nameservices
|
||||||
|
*/
|
||||||
|
public Builder nnTopology(MiniDFSNNTopology topology) {
|
||||||
|
this.nnTopology = topology;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Construct the actual MiniDFSCluster
|
* Construct the actual MiniDFSCluster
|
||||||
*/
|
*/
|
||||||
|
@ -254,15 +259,17 @@ public class MiniDFSCluster {
|
||||||
* Used by builder to create and return an instance of MiniDFSCluster
|
* Used by builder to create and return an instance of MiniDFSCluster
|
||||||
*/
|
*/
|
||||||
private MiniDFSCluster(Builder builder) throws IOException {
|
private MiniDFSCluster(Builder builder) throws IOException {
|
||||||
LOG.info("starting cluster with " + builder.numNameNodes + " namenodes.");
|
if (builder.nnTopology == null) {
|
||||||
nameNodes = new NameNodeInfo[builder.numNameNodes];
|
// If no topology is specified, build a single NN.
|
||||||
// try to determine if in federation mode
|
builder.nnTopology = MiniDFSNNTopology.simpleSingleNN(
|
||||||
if(builder.numNameNodes > 1)
|
builder.nameNodePort, builder.nameNodeHttpPort);
|
||||||
builder.federation = true;
|
}
|
||||||
|
|
||||||
initMiniDFSCluster(builder.nameNodePort,
|
LOG.info("starting cluster with " +
|
||||||
builder.nameNodeHttpPort,
|
builder.nnTopology.countNameNodes() + " namenodes.");
|
||||||
builder.conf,
|
nameNodes = new NameNodeInfo[builder.nnTopology.countNameNodes()];
|
||||||
|
|
||||||
|
initMiniDFSCluster(builder.conf,
|
||||||
builder.numDataNodes,
|
builder.numDataNodes,
|
||||||
builder.format,
|
builder.format,
|
||||||
builder.manageNameDfsDirs,
|
builder.manageNameDfsDirs,
|
||||||
|
@ -274,7 +281,7 @@ public class MiniDFSCluster {
|
||||||
builder.clusterId,
|
builder.clusterId,
|
||||||
builder.waitSafeMode,
|
builder.waitSafeMode,
|
||||||
builder.setupHostsFile,
|
builder.setupHostsFile,
|
||||||
builder.federation);
|
builder.nnTopology);
|
||||||
}
|
}
|
||||||
|
|
||||||
public class DataNodeProperties {
|
public class DataNodeProperties {
|
||||||
|
@ -296,8 +303,8 @@ public class MiniDFSCluster {
|
||||||
new ArrayList<DataNodeProperties>();
|
new ArrayList<DataNodeProperties>();
|
||||||
private File base_dir;
|
private File base_dir;
|
||||||
private File data_dir;
|
private File data_dir;
|
||||||
private boolean federation = false;
|
|
||||||
private boolean waitSafeMode = true;
|
private boolean waitSafeMode = true;
|
||||||
|
private boolean federation;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Stores the information related to a namenode in the cluster
|
* Stores the information related to a namenode in the cluster
|
||||||
|
@ -488,22 +495,23 @@ public class MiniDFSCluster {
|
||||||
String[] racks, String hosts[],
|
String[] racks, String hosts[],
|
||||||
long[] simulatedCapacities) throws IOException {
|
long[] simulatedCapacities) throws IOException {
|
||||||
this.nameNodes = new NameNodeInfo[1]; // Single namenode in the cluster
|
this.nameNodes = new NameNodeInfo[1]; // Single namenode in the cluster
|
||||||
initMiniDFSCluster(nameNodePort, 0, conf, numDataNodes, format,
|
initMiniDFSCluster(conf, numDataNodes, format,
|
||||||
manageNameDfsDirs, manageDataDfsDirs, operation, racks, hosts,
|
manageNameDfsDirs, manageDataDfsDirs, operation, racks, hosts,
|
||||||
simulatedCapacities, null, true, false, false);
|
simulatedCapacities, null, true, false,
|
||||||
|
MiniDFSNNTopology.simpleSingleNN(nameNodePort, 0));
|
||||||
}
|
}
|
||||||
|
|
||||||
private void initMiniDFSCluster(int nameNodePort, int nameNodeHttpPort,
|
private void initMiniDFSCluster(
|
||||||
Configuration conf,
|
Configuration conf,
|
||||||
int numDataNodes, boolean format, boolean manageNameDfsDirs,
|
int numDataNodes, boolean format, boolean manageNameDfsDirs,
|
||||||
boolean manageDataDfsDirs, StartupOption operation, String[] racks,
|
boolean manageDataDfsDirs, StartupOption operation, String[] racks,
|
||||||
String[] hosts, long[] simulatedCapacities, String clusterId,
|
String[] hosts, long[] simulatedCapacities, String clusterId,
|
||||||
boolean waitSafeMode, boolean setupHostsFile, boolean federation)
|
boolean waitSafeMode, boolean setupHostsFile,
|
||||||
|
MiniDFSNNTopology nnTopology)
|
||||||
throws IOException {
|
throws IOException {
|
||||||
this.conf = conf;
|
this.conf = conf;
|
||||||
base_dir = new File(determineDfsBaseDir());
|
base_dir = new File(determineDfsBaseDir());
|
||||||
data_dir = new File(base_dir, "data");
|
data_dir = new File(base_dir, "data");
|
||||||
this.federation = federation;
|
|
||||||
this.waitSafeMode = waitSafeMode;
|
this.waitSafeMode = waitSafeMode;
|
||||||
|
|
||||||
// use alternate RPC engine if spec'd
|
// use alternate RPC engine if spec'd
|
||||||
|
@ -538,28 +546,9 @@ public class MiniDFSCluster {
|
||||||
conf.setClass(NET_TOPOLOGY_NODE_SWITCH_MAPPING_IMPL_KEY,
|
conf.setClass(NET_TOPOLOGY_NODE_SWITCH_MAPPING_IMPL_KEY,
|
||||||
StaticMapping.class, DNSToSwitchMapping.class);
|
StaticMapping.class, DNSToSwitchMapping.class);
|
||||||
|
|
||||||
Collection<String> nameserviceIds = DFSUtil.getNameServiceIds(conf);
|
federation = nnTopology.isFederated();
|
||||||
if(nameserviceIds.size() > 1)
|
createNameNodesAndSetConf(
|
||||||
federation = true;
|
nnTopology, manageNameDfsDirs, format, operation, clusterId, conf);
|
||||||
|
|
||||||
if (!federation) {
|
|
||||||
conf.set(FS_DEFAULT_NAME_KEY, "127.0.0.1:" + nameNodePort);
|
|
||||||
conf.set(DFS_NAMENODE_HTTP_ADDRESS_KEY, "127.0.0.1:"
|
|
||||||
+ nameNodeHttpPort);
|
|
||||||
NameNode nn = createNameNode(0, conf, numDataNodes, manageNameDfsDirs,
|
|
||||||
format, operation, clusterId);
|
|
||||||
nameNodes[0] = new NameNodeInfo(nn, conf);
|
|
||||||
FileSystem.setDefaultUri(conf, getURI(0));
|
|
||||||
} else {
|
|
||||||
if (nameserviceIds.isEmpty()) {
|
|
||||||
for (int i = 0; i < nameNodes.length; i++) {
|
|
||||||
nameserviceIds.add(NAMESERVICE_ID_PREFIX + i);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
initFederationConf(conf, nameserviceIds, numDataNodes, nameNodePort);
|
|
||||||
createFederationNamenodes(conf, nameserviceIds, manageNameDfsDirs, format,
|
|
||||||
operation, clusterId);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (format) {
|
if (format) {
|
||||||
if (data_dir.exists() && !FileUtil.fullyDelete(data_dir)) {
|
if (data_dir.exists() && !FileUtil.fullyDelete(data_dir)) {
|
||||||
|
@ -575,51 +564,91 @@ public class MiniDFSCluster {
|
||||||
ProxyUsers.refreshSuperUserGroupsConfiguration(conf);
|
ProxyUsers.refreshSuperUserGroupsConfiguration(conf);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Initialize configuration for federated cluster */
|
private void createNameNodesAndSetConf(MiniDFSNNTopology nnTopology,
|
||||||
private static void initFederationConf(Configuration conf,
|
boolean manageNameDfsDirs, boolean format, StartupOption operation,
|
||||||
Collection<String> nameserviceIds, int numDataNodes, int nnPort) {
|
String clusterId,
|
||||||
String nameserviceIdList = "";
|
Configuration conf) throws IOException {
|
||||||
for (String nameserviceId : nameserviceIds) {
|
Preconditions.checkArgument(nnTopology.countNameNodes() > 0,
|
||||||
// Create comma separated list of nameserviceIds
|
"empty NN topology: no namenodes specified!");
|
||||||
if (nameserviceIdList.length() > 0) {
|
|
||||||
nameserviceIdList += ",";
|
if (!federation && nnTopology.countNameNodes() == 1) {
|
||||||
}
|
NNConf onlyNN = nnTopology.getOnlyNameNode();
|
||||||
nameserviceIdList += nameserviceId;
|
// we only had one NN, set DEFAULT_NAME for it
|
||||||
initFederatedNamenodeAddress(conf, nameserviceId, nnPort);
|
conf.set(FS_DEFAULT_NAME_KEY, "127.0.0.1:" + onlyNN.getIpcPort());
|
||||||
nnPort = nnPort == 0 ? 0 : nnPort + 2;
|
|
||||||
}
|
|
||||||
conf.set(DFS_FEDERATION_NAMESERVICES, nameserviceIdList);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* For federated namenode initialize the address:port */
|
|
||||||
private static void initFederatedNamenodeAddress(Configuration conf,
|
|
||||||
String nameserviceId, int nnPort) {
|
|
||||||
// Set nameserviceId specific key
|
|
||||||
String key = DFSUtil.addKeySuffixes(
|
|
||||||
DFS_NAMENODE_HTTP_ADDRESS_KEY, nameserviceId);
|
|
||||||
conf.set(key, "127.0.0.1:0");
|
|
||||||
|
|
||||||
key = DFSUtil.addKeySuffixes(
|
|
||||||
DFS_NAMENODE_RPC_ADDRESS_KEY, nameserviceId);
|
|
||||||
conf.set(key, "127.0.0.1:" + nnPort);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void createFederationNamenodes(Configuration conf,
|
|
||||||
Collection<String> nameserviceIds, boolean manageNameDfsDirs,
|
|
||||||
boolean format, StartupOption operation, String clusterId)
|
|
||||||
throws IOException {
|
|
||||||
// Create namenodes in the cluster
|
|
||||||
int nnCounter = 0;
|
int nnCounter = 0;
|
||||||
for (String nameserviceId : nameserviceIds) {
|
List<String> nsIds = Lists.newArrayList();
|
||||||
createFederatedNameNode(nnCounter++, conf, numDataNodes, manageNameDfsDirs,
|
for (MiniDFSNNTopology.NSConf nameservice : nnTopology.getNameservices()) {
|
||||||
format, operation, clusterId, nameserviceId);
|
String nsId = nameservice.getId();
|
||||||
|
nsIds.add(nameservice.getId());
|
||||||
|
|
||||||
|
Preconditions.checkArgument(
|
||||||
|
!federation || nsId != null,
|
||||||
|
"if there is more than one NS, they must have names");
|
||||||
|
|
||||||
|
// First set up the configuration which all of the NNs
|
||||||
|
// need to have - have to do this a priori before starting
|
||||||
|
// *any* of the NNs, so they know to come up in standby.
|
||||||
|
List<String> nnIds = Lists.newArrayList();
|
||||||
|
// Iterate over the NNs in this nameservice
|
||||||
|
for (NNConf nn : nameservice.getNNs()) {
|
||||||
|
nnIds.add(nn.getNnId());
|
||||||
|
|
||||||
|
initNameNodeAddress(conf, nameservice.getId(), nn);
|
||||||
|
}
|
||||||
|
|
||||||
|
// If HA is enabled on this nameservice, enumerate all the namenodes
|
||||||
|
// in the configuration. Also need to set a shared edits dir
|
||||||
|
if (nnIds.size() > 1) {
|
||||||
|
conf.set(DFSUtil.addKeySuffixes(DFS_HA_NAMENODES_KEY, nameservice.getId()),
|
||||||
|
Joiner.on(",").join(nnIds));
|
||||||
|
if (manageNameDfsDirs) {
|
||||||
|
URI sharedEditsUri = fileAsURI(new File(base_dir, "shared-edits-" +
|
||||||
|
nnCounter + "-through-" + (nnCounter+nnIds.size()-1)));
|
||||||
|
// TODO in HDFS-1971: conf.set(DFS_NAMENODE_SHARED_EDITS_DIR_KEY, sharedEditsUri.toString());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private NameNode createNameNode(int nnIndex, Configuration conf,
|
// Now start all the NNs in this nameservice.
|
||||||
int numDataNodes, boolean manageNameDfsDirs, boolean format,
|
int i = 0;
|
||||||
StartupOption operation, String clusterId)
|
for (NNConf nn : nameservice.getNNs()) {
|
||||||
|
initNameNodeConf(conf, nsId, nn.getNnId(), manageNameDfsDirs, nnCounter);
|
||||||
|
|
||||||
|
boolean formatThisOne = format;
|
||||||
|
if (format && i++ > 0) {
|
||||||
|
// Don't format the second NN in an HA setup - that
|
||||||
|
// would result in it having a different clusterID,
|
||||||
|
// block pool ID, etc. Instead, copy the name dirs
|
||||||
|
// from the first one.
|
||||||
|
formatThisOne = false;
|
||||||
|
copyNameDirs(getConfiguration(nnCounter - 1), conf);
|
||||||
|
}
|
||||||
|
|
||||||
|
createNameNode(nnCounter++, conf, numDataNodes, formatThisOne,
|
||||||
|
operation, clusterId, nsId, nn.getNnId());
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
if (federation) {
|
||||||
|
// If we have more than one nameservice, need to enumerate them in the
|
||||||
|
// config.
|
||||||
|
conf.set(DFS_FEDERATION_NAMESERVICES, Joiner.on(",").join(nsIds));
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private void initNameNodeConf(Configuration conf,
|
||||||
|
String nameserviceId, String nnId,
|
||||||
|
boolean manageNameDfsDirs, int nnIndex)
|
||||||
throws IOException {
|
throws IOException {
|
||||||
|
if (nameserviceId != null) {
|
||||||
|
conf.set(DFS_FEDERATION_NAMESERVICE_ID, nameserviceId);
|
||||||
|
}
|
||||||
|
if (nnId != null) {
|
||||||
|
conf.set(DFS_HA_NAMENODE_ID_KEY, nnId);
|
||||||
|
}
|
||||||
|
|
||||||
if (manageNameDfsDirs) {
|
if (manageNameDfsDirs) {
|
||||||
conf.set(DFS_NAMENODE_NAME_DIR_KEY,
|
conf.set(DFS_NAMENODE_NAME_DIR_KEY,
|
||||||
fileAsURI(new File(base_dir, "name" + (2*nnIndex + 1)))+","+
|
fileAsURI(new File(base_dir, "name" + (2*nnIndex + 1)))+","+
|
||||||
|
@ -628,7 +657,49 @@ public class MiniDFSCluster {
|
||||||
fileAsURI(new File(base_dir, "namesecondary" + (2*nnIndex + 1)))+","+
|
fileAsURI(new File(base_dir, "namesecondary" + (2*nnIndex + 1)))+","+
|
||||||
fileAsURI(new File(base_dir, "namesecondary" + (2*nnIndex + 2))));
|
fileAsURI(new File(base_dir, "namesecondary" + (2*nnIndex + 2))));
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void copyNameDirs(Configuration srcConf, Configuration dstConf)
|
||||||
|
throws IOException {
|
||||||
|
Collection<URI> srcDirs = FSNamesystem.getNamespaceDirs(srcConf);
|
||||||
|
Collection<URI> dstDirs = FSNamesystem.getNamespaceDirs(dstConf);
|
||||||
|
URI srcDir = Lists.newArrayList(srcDirs).get(0);
|
||||||
|
FileSystem dstFS = FileSystem.getLocal(dstConf).getRaw();
|
||||||
|
for (URI dstDir : dstDirs) {
|
||||||
|
Preconditions.checkArgument(!dstDir.equals(srcDir));
|
||||||
|
Files.deleteRecursively(new File(dstDir));
|
||||||
|
LOG.info("Copying namedir from primary node dir "
|
||||||
|
+ srcDir + " to " + dstDir);
|
||||||
|
FileUtil.copy(
|
||||||
|
new File(srcDir),
|
||||||
|
dstFS, new Path(dstDir), false, dstConf);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialize the address and port for this NameNode. In the
|
||||||
|
* non-federated case, the nameservice and namenode ID may be
|
||||||
|
* null.
|
||||||
|
*/
|
||||||
|
private static void initNameNodeAddress(Configuration conf,
|
||||||
|
String nameserviceId, NNConf nnConf) {
|
||||||
|
// Set NN-specific specific key
|
||||||
|
String key = DFSUtil.addKeySuffixes(
|
||||||
|
DFS_NAMENODE_HTTP_ADDRESS_KEY, nameserviceId,
|
||||||
|
nnConf.getNnId());
|
||||||
|
conf.set(key, "127.0.0.1:" + nnConf.getHttpPort());
|
||||||
|
|
||||||
|
key = DFSUtil.addKeySuffixes(
|
||||||
|
DFS_NAMENODE_RPC_ADDRESS_KEY, nameserviceId,
|
||||||
|
nnConf.getNnId());
|
||||||
|
conf.set(key, "127.0.0.1:" + nnConf.getIpcPort());
|
||||||
|
}
|
||||||
|
|
||||||
|
private void createNameNode(int nnIndex, Configuration conf,
|
||||||
|
int numDataNodes, boolean format, StartupOption operation,
|
||||||
|
String clusterId, String nameserviceId,
|
||||||
|
String nnId)
|
||||||
|
throws IOException {
|
||||||
// Format and clean out DataNode directories
|
// Format and clean out DataNode directories
|
||||||
if (format) {
|
if (format) {
|
||||||
DFSTestUtil.formatNameNode(conf);
|
DFSTestUtil.formatNameNode(conf);
|
||||||
|
@ -642,23 +713,17 @@ public class MiniDFSCluster {
|
||||||
operation == StartupOption.FORMAT ||
|
operation == StartupOption.FORMAT ||
|
||||||
operation == StartupOption.REGULAR) ?
|
operation == StartupOption.REGULAR) ?
|
||||||
new String[] {} : new String[] {operation.getName()};
|
new String[] {} : new String[] {operation.getName()};
|
||||||
return NameNode.createNameNode(args, conf);
|
NameNode nn = NameNode.createNameNode(args, conf);
|
||||||
}
|
|
||||||
|
|
||||||
private void createFederatedNameNode(int nnIndex, Configuration conf,
|
// After the NN has started, set back the bound ports into
|
||||||
int numDataNodes, boolean manageNameDfsDirs, boolean format,
|
// the conf
|
||||||
StartupOption operation, String clusterId, String nameserviceId)
|
|
||||||
throws IOException {
|
|
||||||
conf.set(DFS_FEDERATION_NAMESERVICE_ID, nameserviceId);
|
|
||||||
NameNode nn = createNameNode(nnIndex, conf, numDataNodes, manageNameDfsDirs,
|
|
||||||
format, operation, clusterId);
|
|
||||||
conf.set(DFSUtil.addKeySuffixes(
|
conf.set(DFSUtil.addKeySuffixes(
|
||||||
DFS_NAMENODE_RPC_ADDRESS_KEY, nameserviceId), NameNode
|
DFS_NAMENODE_RPC_ADDRESS_KEY, nameserviceId, nnId), NameNode
|
||||||
.getHostPortString(nn.getNameNodeAddress()));
|
.getHostPortString(nn.getNameNodeAddress()));
|
||||||
conf.set(DFSUtil.addKeySuffixes(
|
conf.set(DFSUtil.addKeySuffixes(
|
||||||
DFS_NAMENODE_HTTP_ADDRESS_KEY, nameserviceId), NameNode
|
DFS_NAMENODE_HTTP_ADDRESS_KEY, nameserviceId, nnId), NameNode
|
||||||
.getHostPortString(nn.getHttpAddress()));
|
.getHostPortString(nn.getHttpAddress()));
|
||||||
DFSUtil.setGenericConf(conf, nameserviceId,
|
DFSUtil.setGenericConf(conf, nameserviceId, nnId,
|
||||||
DFS_NAMENODE_HTTP_ADDRESS_KEY);
|
DFS_NAMENODE_HTTP_ADDRESS_KEY);
|
||||||
nameNodes[nnIndex] = new NameNodeInfo(nn, new Configuration(conf));
|
nameNodes[nnIndex] = new NameNodeInfo(nn, new Configuration(conf));
|
||||||
}
|
}
|
||||||
|
@ -1110,6 +1175,7 @@ public class MiniDFSCluster {
|
||||||
LOG.info("Shutting down the Mini HDFS Cluster");
|
LOG.info("Shutting down the Mini HDFS Cluster");
|
||||||
shutdownDataNodes();
|
shutdownDataNodes();
|
||||||
for (NameNodeInfo nnInfo : nameNodes) {
|
for (NameNodeInfo nnInfo : nameNodes) {
|
||||||
|
if (nnInfo == null) continue;
|
||||||
NameNode nameNode = nnInfo.nameNode;
|
NameNode nameNode = nnInfo.nameNode;
|
||||||
if (nameNode != null) {
|
if (nameNode != null) {
|
||||||
nameNode.stop();
|
nameNode.stop();
|
||||||
|
@ -1380,14 +1446,7 @@ public class MiniDFSCluster {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
long[] sizes;
|
long[] sizes;
|
||||||
try {
|
sizes = NameNodeAdapter.getStats(nameNode.getNamesystem());
|
||||||
sizes = nameNode.getRpcServer().getStats();
|
|
||||||
} catch (IOException ioe) {
|
|
||||||
// This method above should never throw.
|
|
||||||
// It only throws IOE since it is exposed via RPC
|
|
||||||
throw (AssertionError)(new AssertionError("Unexpected IOE thrown: "
|
|
||||||
+ StringUtils.stringifyException(ioe)).initCause(ioe));
|
|
||||||
}
|
|
||||||
boolean isUp = false;
|
boolean isUp = false;
|
||||||
synchronized (this) {
|
synchronized (this) {
|
||||||
isUp = ((!nameNode.isInSafeMode() || !waitSafeMode) && sizes[0] != 0);
|
isUp = ((!nameNode.isInSafeMode() || !waitSafeMode) && sizes[0] != 0);
|
||||||
|
@ -1498,12 +1557,29 @@ public class MiniDFSCluster {
|
||||||
return FSNamesystem.getNamespaceEditsDirs(nameNodes[nnIndex].conf);
|
return FSNamesystem.getNamespaceEditsDirs(nameNodes[nnIndex].conf);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private HAServiceProtocol getHaServiceClient(int nnIndex) throws IOException {
|
||||||
|
InetSocketAddress addr = nameNodes[nnIndex].nameNode.getServiceRpcAddress();
|
||||||
|
return RPC.getProxy(HAServiceProtocol.class,
|
||||||
|
HAServiceProtocol.versionID, addr, conf);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void transitionToActive(int nnIndex) throws IOException,
|
||||||
|
ServiceFailedException {
|
||||||
|
getHaServiceClient(nnIndex).transitionToActive();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void transitionToStandby(int nnIndex) throws IOException,
|
||||||
|
ServiceFailedException {
|
||||||
|
getHaServiceClient(nnIndex).transitionToActive();
|
||||||
|
}
|
||||||
|
|
||||||
/** Wait until the given namenode gets registration from all the datanodes */
|
/** Wait until the given namenode gets registration from all the datanodes */
|
||||||
public void waitActive(int nnIndex) throws IOException {
|
public void waitActive(int nnIndex) throws IOException {
|
||||||
if (nameNodes.length == 0 || nameNodes[nnIndex] == null) {
|
if (nameNodes.length == 0 || nameNodes[nnIndex] == null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
InetSocketAddress addr = nameNodes[nnIndex].nameNode.getServiceRpcAddress();
|
InetSocketAddress addr = nameNodes[nnIndex].nameNode.getServiceRpcAddress();
|
||||||
|
assert addr.getPort() != 0;
|
||||||
DFSClient client = new DFSClient(addr, conf);
|
DFSClient client = new DFSClient(addr, conf);
|
||||||
|
|
||||||
// ensure all datanodes have registered and sent heartbeat to the namenode
|
// ensure all datanodes have registered and sent heartbeat to the namenode
|
||||||
|
@ -1914,9 +1990,12 @@ public class MiniDFSCluster {
|
||||||
nameserviceIds += "," + nameserviceId;
|
nameserviceIds += "," + nameserviceId;
|
||||||
conf.set(DFS_FEDERATION_NAMESERVICES, nameserviceIds);
|
conf.set(DFS_FEDERATION_NAMESERVICES, nameserviceIds);
|
||||||
|
|
||||||
initFederatedNamenodeAddress(conf, nameserviceId, namenodePort);
|
String nnId = null;
|
||||||
createFederatedNameNode(nnIndex, conf, numDataNodes, true, true, null,
|
initNameNodeAddress(conf, nameserviceId,
|
||||||
null, nameserviceId);
|
new NNConf(nnId).setIpcPort(namenodePort));
|
||||||
|
initNameNodeConf(conf, nameserviceId, nnId, true, nnIndex);
|
||||||
|
createNameNode(nnIndex, conf, numDataNodes, true, null, null,
|
||||||
|
nameserviceId, nnId);
|
||||||
|
|
||||||
// Refresh datanodes with the newly started namenode
|
// Refresh datanodes with the newly started namenode
|
||||||
for (DataNodeProperties dn : dataNodes) {
|
for (DataNodeProperties dn : dataNodes) {
|
||||||
|
|
|
@ -0,0 +1,157 @@
|
||||||
|
/**
|
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
* or more contributor license agreements. See the NOTICE file
|
||||||
|
* distributed with this work for additional information
|
||||||
|
* regarding copyright ownership. The ASF licenses this file
|
||||||
|
* to you under the Apache License, Version 2.0 (the
|
||||||
|
* "License"); you may not use this file except in compliance
|
||||||
|
* with the License. You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
package org.apache.hadoop.hdfs;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import org.apache.hadoop.classification.InterfaceAudience;
|
||||||
|
import org.apache.hadoop.classification.InterfaceStability;
|
||||||
|
|
||||||
|
import com.google.common.base.Preconditions;
|
||||||
|
import com.google.common.collect.Lists;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class is used to specify the setup of namenodes when instantiating
|
||||||
|
* a MiniDFSCluster. It consists of a set of nameservices, each of which
|
||||||
|
* may have one or more namenodes (in the case of HA)
|
||||||
|
*/
|
||||||
|
@InterfaceAudience.LimitedPrivate({"HBase", "HDFS", "Hive", "MapReduce", "Pig"})
|
||||||
|
@InterfaceStability.Unstable
|
||||||
|
public class MiniDFSNNTopology {
|
||||||
|
private final List<NSConf> nameservices = Lists.newArrayList();
|
||||||
|
private boolean federation;
|
||||||
|
|
||||||
|
public MiniDFSNNTopology() {
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set up a simple non-federated non-HA NN.
|
||||||
|
*/
|
||||||
|
public static MiniDFSNNTopology simpleSingleNN(
|
||||||
|
int nameNodePort, int nameNodeHttpPort) {
|
||||||
|
return new MiniDFSNNTopology()
|
||||||
|
.addNameservice(new MiniDFSNNTopology.NSConf(null)
|
||||||
|
.addNN(new MiniDFSNNTopology.NNConf(null)
|
||||||
|
.setHttpPort(nameNodeHttpPort)
|
||||||
|
.setIpcPort(nameNodePort)));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set up federated cluster with the given number of nameservices, each
|
||||||
|
* of which has only a single NameNode.
|
||||||
|
*/
|
||||||
|
public static MiniDFSNNTopology simpleFederatedTopology(
|
||||||
|
int numNameservices) {
|
||||||
|
MiniDFSNNTopology topology = new MiniDFSNNTopology();
|
||||||
|
for (int i = 1; i <= numNameservices; i++) {
|
||||||
|
topology.addNameservice(new MiniDFSNNTopology.NSConf("ns" + i)
|
||||||
|
.addNN(new MiniDFSNNTopology.NNConf(null)));
|
||||||
|
}
|
||||||
|
topology.setFederation(true);
|
||||||
|
return topology;
|
||||||
|
}
|
||||||
|
|
||||||
|
public MiniDFSNNTopology setFederation(boolean federation) {
|
||||||
|
this.federation = federation;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public MiniDFSNNTopology addNameservice(NSConf nameservice) {
|
||||||
|
Preconditions.checkArgument(!nameservice.getNNs().isEmpty(),
|
||||||
|
"Must have at least one NN in a nameservice");
|
||||||
|
this.nameservices.add(nameservice);
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int countNameNodes() {
|
||||||
|
int count = 0;
|
||||||
|
for (NSConf ns : nameservices) {
|
||||||
|
count += ns.nns.size();
|
||||||
|
}
|
||||||
|
return count;
|
||||||
|
}
|
||||||
|
|
||||||
|
public NNConf getOnlyNameNode() {
|
||||||
|
Preconditions.checkState(countNameNodes() == 1,
|
||||||
|
"must have exactly one NN!");
|
||||||
|
return nameservices.get(0).getNNs().get(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isFederated() {
|
||||||
|
return nameservices.size() > 1 || federation;
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<NSConf> getNameservices() {
|
||||||
|
return nameservices;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class NSConf {
|
||||||
|
private final String id;
|
||||||
|
private final List<NNConf> nns = Lists.newArrayList();
|
||||||
|
|
||||||
|
public NSConf(String id) {
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public NSConf addNN(NNConf nn) {
|
||||||
|
this.nns.add(nn);
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<NNConf> getNNs() {
|
||||||
|
return nns;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class NNConf {
|
||||||
|
private String nnId;
|
||||||
|
private int httpPort;
|
||||||
|
private int ipcPort;
|
||||||
|
|
||||||
|
public NNConf(String nnId) {
|
||||||
|
this.nnId = nnId;
|
||||||
|
}
|
||||||
|
|
||||||
|
String getNnId() {
|
||||||
|
return nnId;
|
||||||
|
}
|
||||||
|
|
||||||
|
int getIpcPort() {
|
||||||
|
return ipcPort;
|
||||||
|
}
|
||||||
|
|
||||||
|
int getHttpPort() {
|
||||||
|
return httpPort;
|
||||||
|
}
|
||||||
|
|
||||||
|
public NNConf setHttpPort(int httpPort) {
|
||||||
|
this.httpPort = httpPort;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public NNConf setIpcPort(int ipcPort) {
|
||||||
|
this.ipcPort = ipcPort;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -46,7 +46,9 @@ public class TestDFSClientFailover {
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
public void setUpCluster() throws IOException {
|
public void setUpCluster() throws IOException {
|
||||||
cluster = new MiniDFSCluster.Builder(conf).numNameNodes(2).build();
|
cluster = new MiniDFSCluster.Builder(conf)
|
||||||
|
.nnTopology(MiniDFSNNTopology.simpleFederatedTopology(2))
|
||||||
|
.build();
|
||||||
cluster.waitActive();
|
cluster.waitActive();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -61,7 +63,6 @@ public class TestDFSClientFailover {
|
||||||
// changed to exercise that.
|
// changed to exercise that.
|
||||||
@Test
|
@Test
|
||||||
public void testDfsClientFailover() throws IOException, URISyntaxException {
|
public void testDfsClientFailover() throws IOException, URISyntaxException {
|
||||||
final String logicalNameNodeId = "ha-nn-uri";
|
|
||||||
InetSocketAddress nnAddr1 = cluster.getNameNode(0).getNameNodeAddress();
|
InetSocketAddress nnAddr1 = cluster.getNameNode(0).getNameNodeAddress();
|
||||||
InetSocketAddress nnAddr2 = cluster.getNameNode(1).getNameNodeAddress();
|
InetSocketAddress nnAddr2 = cluster.getNameNode(1).getNameNodeAddress();
|
||||||
String nameServiceId1 = DFSUtil.getNameServiceIdFromAddress(conf, nnAddr1,
|
String nameServiceId1 = DFSUtil.getNameServiceIdFromAddress(conf, nnAddr1,
|
||||||
|
@ -69,9 +70,6 @@ public class TestDFSClientFailover {
|
||||||
String nameServiceId2 = DFSUtil.getNameServiceIdFromAddress(conf, nnAddr2,
|
String nameServiceId2 = DFSUtil.getNameServiceIdFromAddress(conf, nnAddr2,
|
||||||
DFS_NAMENODE_RPC_ADDRESS_KEY);
|
DFS_NAMENODE_RPC_ADDRESS_KEY);
|
||||||
|
|
||||||
String nameNodeId1 = "nn1";
|
|
||||||
String nameNodeId2 = "nn2";
|
|
||||||
|
|
||||||
ClientProtocol nn1 = DFSUtil.createNamenode(nnAddr1, conf);
|
ClientProtocol nn1 = DFSUtil.createNamenode(nnAddr1, conf);
|
||||||
ClientProtocol nn2 = DFSUtil.createNamenode(nnAddr2, conf);
|
ClientProtocol nn2 = DFSUtil.createNamenode(nnAddr2, conf);
|
||||||
|
|
||||||
|
@ -85,14 +83,22 @@ public class TestDFSClientFailover {
|
||||||
out1.close();
|
out1.close();
|
||||||
out2.close();
|
out2.close();
|
||||||
|
|
||||||
|
String nsId = "nameserviceId1";
|
||||||
|
|
||||||
|
final String logicalNameNodeId = "ha-nn-uri";
|
||||||
|
String nameNodeId1 = "nn1";
|
||||||
|
String nameNodeId2 = "nn2";
|
||||||
|
|
||||||
String address1 = "hdfs://" + nnAddr1.getHostName() + ":" + nnAddr1.getPort();
|
String address1 = "hdfs://" + nnAddr1.getHostName() + ":" + nnAddr1.getPort();
|
||||||
String address2 = "hdfs://" + nnAddr2.getHostName() + ":" + nnAddr2.getPort();
|
String address2 = "hdfs://" + nnAddr2.getHostName() + ":" + nnAddr2.getPort();
|
||||||
conf.set(DFSUtil.addKeySuffixes(DFS_NAMENODE_RPC_ADDRESS_KEY,
|
conf.set(DFSUtil.addKeySuffixes(DFS_NAMENODE_RPC_ADDRESS_KEY,
|
||||||
nameServiceId1, nameNodeId1), address1);
|
nsId, nameNodeId1), address1);
|
||||||
conf.set(DFSUtil.addKeySuffixes(DFS_NAMENODE_RPC_ADDRESS_KEY,
|
conf.set(DFSUtil.addKeySuffixes(DFS_NAMENODE_RPC_ADDRESS_KEY,
|
||||||
nameServiceId2, nameNodeId2), address2);
|
nsId, nameNodeId2), address2);
|
||||||
|
|
||||||
conf.set(DFS_HA_NAMENODES_KEY, nameNodeId1 + "," + nameNodeId2);
|
conf.set(DFSConfigKeys.DFS_FEDERATION_NAMESERVICES, nsId);
|
||||||
|
conf.set(DFSUtil.addKeySuffixes(DFS_HA_NAMENODES_KEY, nsId),
|
||||||
|
nameNodeId1 + "," + nameNodeId2);
|
||||||
conf.set(DFS_CLIENT_FAILOVER_PROXY_PROVIDER_KEY_PREFIX + "." + logicalNameNodeId,
|
conf.set(DFS_CLIENT_FAILOVER_PROXY_PROVIDER_KEY_PREFIX + "." + logicalNameNodeId,
|
||||||
ConfiguredFailoverProxyProvider.class.getName());
|
ConfiguredFailoverProxyProvider.class.getName());
|
||||||
|
|
||||||
|
|
|
@ -279,7 +279,8 @@ public class TestDecommission {
|
||||||
* @throws IOException */
|
* @throws IOException */
|
||||||
private void startCluster(int numNameNodes, int numDatanodes,
|
private void startCluster(int numNameNodes, int numDatanodes,
|
||||||
Configuration conf) throws IOException {
|
Configuration conf) throws IOException {
|
||||||
cluster = new MiniDFSCluster.Builder(conf).numNameNodes(numNameNodes)
|
cluster = new MiniDFSCluster.Builder(conf)
|
||||||
|
.nnTopology(MiniDFSNNTopology.simpleFederatedTopology(numNameNodes))
|
||||||
.numDataNodes(numDatanodes).build();
|
.numDataNodes(numDatanodes).build();
|
||||||
cluster.waitActive();
|
cluster.waitActive();
|
||||||
for (int i = 0; i < numNameNodes; i++) {
|
for (int i = 0; i < numNameNodes; i++) {
|
||||||
|
@ -507,7 +508,8 @@ public class TestDecommission {
|
||||||
InterruptedException {
|
InterruptedException {
|
||||||
conf.set(DFSConfigKeys.DFS_HOSTS, hostsFile.toUri().getPath());
|
conf.set(DFSConfigKeys.DFS_HOSTS, hostsFile.toUri().getPath());
|
||||||
int numDatanodes = 1;
|
int numDatanodes = 1;
|
||||||
cluster = new MiniDFSCluster.Builder(conf).numNameNodes(numNameNodes)
|
cluster = new MiniDFSCluster.Builder(conf)
|
||||||
|
.nnTopology(MiniDFSNNTopology.simpleFederatedTopology(numNameNodes))
|
||||||
.numDataNodes(numDatanodes).setupHostsFile(true).build();
|
.numDataNodes(numDatanodes).setupHostsFile(true).build();
|
||||||
cluster.waitActive();
|
cluster.waitActive();
|
||||||
|
|
||||||
|
|
|
@ -41,7 +41,8 @@ public class TestMiniDFSCluster {
|
||||||
protected File testDataDir;
|
protected File testDataDir;
|
||||||
@Before
|
@Before
|
||||||
public void setUp() {
|
public void setUp() {
|
||||||
testDataPath = System.getProperty(MiniDFSCluster.PROP_TEST_BUILD_DATA);
|
testDataPath = System.getProperty(MiniDFSCluster.PROP_TEST_BUILD_DATA,
|
||||||
|
"build/test/data");
|
||||||
testDataDir = new File(new File(testDataPath).getParentFile(),
|
testDataDir = new File(new File(testDataPath).getParentFile(),
|
||||||
"miniclusters");
|
"miniclusters");
|
||||||
|
|
||||||
|
|
|
@ -370,7 +370,7 @@ public class TestBlockToken {
|
||||||
Configuration conf = new HdfsConfiguration();
|
Configuration conf = new HdfsConfiguration();
|
||||||
conf.setBoolean(DFSConfigKeys.DFS_BLOCK_ACCESS_TOKEN_ENABLE_KEY, true);
|
conf.setBoolean(DFSConfigKeys.DFS_BLOCK_ACCESS_TOKEN_ENABLE_KEY, true);
|
||||||
conf.setInt(DFSConfigKeys.DFS_BLOCK_SIZE_KEY, 512);
|
conf.setInt(DFSConfigKeys.DFS_BLOCK_SIZE_KEY, 512);
|
||||||
MiniDFSCluster cluster = new MiniDFSCluster.Builder(conf).numNameNodes(1)
|
MiniDFSCluster cluster = new MiniDFSCluster.Builder(conf)
|
||||||
.numDataNodes(1).build();
|
.numDataNodes(1).build();
|
||||||
cluster.waitActive();
|
cluster.waitActive();
|
||||||
|
|
||||||
|
|
|
@ -35,6 +35,7 @@ import org.apache.hadoop.hdfs.DFSTestUtil;
|
||||||
import org.apache.hadoop.hdfs.DFSUtil;
|
import org.apache.hadoop.hdfs.DFSUtil;
|
||||||
import org.apache.hadoop.hdfs.HdfsConfiguration;
|
import org.apache.hadoop.hdfs.HdfsConfiguration;
|
||||||
import org.apache.hadoop.hdfs.MiniDFSCluster;
|
import org.apache.hadoop.hdfs.MiniDFSCluster;
|
||||||
|
import org.apache.hadoop.hdfs.MiniDFSNNTopology;
|
||||||
import org.apache.hadoop.hdfs.protocol.Block;
|
import org.apache.hadoop.hdfs.protocol.Block;
|
||||||
import org.apache.hadoop.hdfs.protocol.ClientProtocol;
|
import org.apache.hadoop.hdfs.protocol.ClientProtocol;
|
||||||
import org.apache.hadoop.hdfs.protocol.DatanodeInfo;
|
import org.apache.hadoop.hdfs.protocol.DatanodeInfo;
|
||||||
|
@ -254,7 +255,7 @@ public class TestBalancerWithMultipleNameNodes {
|
||||||
{
|
{
|
||||||
LOG.info("UNEVEN 1");
|
LOG.info("UNEVEN 1");
|
||||||
final MiniDFSCluster cluster = new MiniDFSCluster.Builder(conf)
|
final MiniDFSCluster cluster = new MiniDFSCluster.Builder(conf)
|
||||||
.numNameNodes(nNameNodes)
|
.nnTopology(MiniDFSNNTopology.simpleFederatedTopology(2))
|
||||||
.numDataNodes(nDataNodes)
|
.numDataNodes(nDataNodes)
|
||||||
.racks(racks)
|
.racks(racks)
|
||||||
.simulatedCapacities(capacities)
|
.simulatedCapacities(capacities)
|
||||||
|
@ -275,7 +276,7 @@ public class TestBalancerWithMultipleNameNodes {
|
||||||
{
|
{
|
||||||
LOG.info("UNEVEN 10");
|
LOG.info("UNEVEN 10");
|
||||||
final MiniDFSCluster cluster = new MiniDFSCluster.Builder(conf)
|
final MiniDFSCluster cluster = new MiniDFSCluster.Builder(conf)
|
||||||
.numNameNodes(nNameNodes)
|
.nnTopology(MiniDFSNNTopology.simpleFederatedTopology(nNameNodes))
|
||||||
.numDataNodes(nDataNodes)
|
.numDataNodes(nDataNodes)
|
||||||
.racks(racks)
|
.racks(racks)
|
||||||
.simulatedCapacities(capacities)
|
.simulatedCapacities(capacities)
|
||||||
|
@ -329,7 +330,7 @@ public class TestBalancerWithMultipleNameNodes {
|
||||||
|
|
||||||
LOG.info("RUN_TEST -1");
|
LOG.info("RUN_TEST -1");
|
||||||
final MiniDFSCluster cluster = new MiniDFSCluster.Builder(conf)
|
final MiniDFSCluster cluster = new MiniDFSCluster.Builder(conf)
|
||||||
.numNameNodes(nNameNodes)
|
.nnTopology(MiniDFSNNTopology.simpleFederatedTopology(nNameNodes))
|
||||||
.numDataNodes(nDataNodes)
|
.numDataNodes(nDataNodes)
|
||||||
.racks(racks)
|
.racks(racks)
|
||||||
.simulatedCapacities(capacities)
|
.simulatedCapacities(capacities)
|
||||||
|
|
|
@ -28,6 +28,7 @@ import org.apache.hadoop.conf.Configuration;
|
||||||
import org.apache.hadoop.hdfs.DFSConfigKeys;
|
import org.apache.hadoop.hdfs.DFSConfigKeys;
|
||||||
import org.apache.hadoop.hdfs.HdfsConfiguration;
|
import org.apache.hadoop.hdfs.HdfsConfiguration;
|
||||||
import org.apache.hadoop.hdfs.MiniDFSCluster;
|
import org.apache.hadoop.hdfs.MiniDFSCluster;
|
||||||
|
import org.apache.hadoop.hdfs.MiniDFSNNTopology;
|
||||||
import org.junit.After;
|
import org.junit.After;
|
||||||
import org.junit.Before;
|
import org.junit.Before;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
@ -36,7 +37,6 @@ import org.junit.Test;
|
||||||
* Tests if DataNode process exits if all Block Pool services exit.
|
* Tests if DataNode process exits if all Block Pool services exit.
|
||||||
*/
|
*/
|
||||||
public class TestDataNodeExit {
|
public class TestDataNodeExit {
|
||||||
private static int BASEPORT = 9923;
|
|
||||||
private static long WAIT_TIME_IN_MILLIS = 10;
|
private static long WAIT_TIME_IN_MILLIS = 10;
|
||||||
Configuration conf;
|
Configuration conf;
|
||||||
MiniDFSCluster cluster = null;
|
MiniDFSCluster cluster = null;
|
||||||
|
@ -46,8 +46,9 @@ public class TestDataNodeExit {
|
||||||
conf = new HdfsConfiguration();
|
conf = new HdfsConfiguration();
|
||||||
conf.setInt(DFSConfigKeys.DFS_BLOCK_SIZE_KEY, 100);
|
conf.setInt(DFSConfigKeys.DFS_BLOCK_SIZE_KEY, 100);
|
||||||
conf.setInt(DFSConfigKeys.DFS_BYTES_PER_CHECKSUM_KEY, 100);
|
conf.setInt(DFSConfigKeys.DFS_BYTES_PER_CHECKSUM_KEY, 100);
|
||||||
cluster = new MiniDFSCluster.Builder(conf).numNameNodes(3)
|
cluster = new MiniDFSCluster.Builder(conf)
|
||||||
.nameNodePort(BASEPORT).build();
|
.nnTopology(MiniDFSNNTopology.simpleFederatedTopology(3))
|
||||||
|
.build();
|
||||||
for (int i = 0; i < 3; i++) {
|
for (int i = 0; i < 3; i++) {
|
||||||
cluster.waitActive(i);
|
cluster.waitActive(i);
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,6 +30,7 @@ import org.apache.commons.logging.LogFactory;
|
||||||
import org.apache.hadoop.conf.Configuration;
|
import org.apache.hadoop.conf.Configuration;
|
||||||
import org.apache.hadoop.hdfs.HdfsConfiguration;
|
import org.apache.hadoop.hdfs.HdfsConfiguration;
|
||||||
import org.apache.hadoop.hdfs.MiniDFSCluster;
|
import org.apache.hadoop.hdfs.MiniDFSCluster;
|
||||||
|
import org.apache.hadoop.hdfs.MiniDFSNNTopology;
|
||||||
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants.StartupOption;
|
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants.StartupOption;
|
||||||
import org.apache.hadoop.hdfs.server.datanode.FSDataset.VolumeInfo;
|
import org.apache.hadoop.hdfs.server.datanode.FSDataset.VolumeInfo;
|
||||||
import org.apache.hadoop.hdfs.server.namenode.FSImageTestUtil;
|
import org.apache.hadoop.hdfs.server.namenode.FSImageTestUtil;
|
||||||
|
@ -56,8 +57,9 @@ public class TestDataNodeMultipleRegistrations {
|
||||||
*/
|
*/
|
||||||
@Test
|
@Test
|
||||||
public void test2NNRegistration() throws IOException {
|
public void test2NNRegistration() throws IOException {
|
||||||
MiniDFSCluster cluster = new MiniDFSCluster.Builder(conf).numNameNodes(2)
|
MiniDFSCluster cluster = new MiniDFSCluster.Builder(conf)
|
||||||
.nameNodePort(9928).build();
|
.nnTopology(MiniDFSNNTopology.simpleFederatedTopology(2))
|
||||||
|
.build();
|
||||||
try {
|
try {
|
||||||
cluster.waitActive();
|
cluster.waitActive();
|
||||||
NameNode nn1 = cluster.getNameNode(0);
|
NameNode nn1 = cluster.getNameNode(0);
|
||||||
|
@ -180,8 +182,9 @@ public class TestDataNodeMultipleRegistrations {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testClusterIdMismatch() throws IOException {
|
public void testClusterIdMismatch() throws IOException {
|
||||||
MiniDFSCluster cluster = new MiniDFSCluster.Builder(conf).numNameNodes(2).
|
MiniDFSCluster cluster = new MiniDFSCluster.Builder(conf)
|
||||||
nameNodePort(9928).build();
|
.nnTopology(MiniDFSNNTopology.simpleFederatedTopology(2))
|
||||||
|
.build();
|
||||||
try {
|
try {
|
||||||
cluster.waitActive();
|
cluster.waitActive();
|
||||||
|
|
||||||
|
@ -216,25 +219,27 @@ public class TestDataNodeMultipleRegistrations {
|
||||||
|
|
||||||
Configuration conf = new HdfsConfiguration();
|
Configuration conf = new HdfsConfiguration();
|
||||||
// start Federated cluster and add a node.
|
// start Federated cluster and add a node.
|
||||||
MiniDFSCluster cluster = new MiniDFSCluster.Builder(conf).numNameNodes(2).
|
MiniDFSCluster cluster = new MiniDFSCluster.Builder(conf)
|
||||||
nameNodePort(9928).build();
|
.nnTopology(MiniDFSNNTopology.simpleFederatedTopology(2))
|
||||||
|
.build();
|
||||||
Assert.assertNotNull(cluster);
|
Assert.assertNotNull(cluster);
|
||||||
Assert.assertEquals("(1)Should be 2 namenodes", 2, cluster.getNumNameNodes());
|
Assert.assertEquals("(1)Should be 2 namenodes", 2, cluster.getNumNameNodes());
|
||||||
|
|
||||||
// add a node
|
// add a node
|
||||||
cluster.addNameNode(conf, 9929);
|
cluster.addNameNode(conf, 0);
|
||||||
Assert.assertEquals("(1)Should be 3 namenodes", 3, cluster.getNumNameNodes());
|
Assert.assertEquals("(1)Should be 3 namenodes", 3, cluster.getNumNameNodes());
|
||||||
cluster.shutdown();
|
cluster.shutdown();
|
||||||
|
|
||||||
// 2. start with Federation flag set
|
// 2. start with Federation flag set
|
||||||
conf = new HdfsConfiguration();
|
conf = new HdfsConfiguration();
|
||||||
cluster = new MiniDFSCluster.Builder(conf).federation(true).
|
cluster = new MiniDFSCluster.Builder(conf)
|
||||||
nameNodePort(9928).build();
|
.nnTopology(MiniDFSNNTopology.simpleFederatedTopology(1))
|
||||||
|
.build();
|
||||||
Assert.assertNotNull(cluster);
|
Assert.assertNotNull(cluster);
|
||||||
Assert.assertEquals("(2)Should be 1 namenodes", 1, cluster.getNumNameNodes());
|
Assert.assertEquals("(2)Should be 1 namenodes", 1, cluster.getNumNameNodes());
|
||||||
|
|
||||||
// add a node
|
// add a node
|
||||||
cluster.addNameNode(conf, 9929);
|
cluster.addNameNode(conf, 0);
|
||||||
Assert.assertEquals("(2)Should be 2 namenodes", 2, cluster.getNumNameNodes());
|
Assert.assertEquals("(2)Should be 2 namenodes", 2, cluster.getNumNameNodes());
|
||||||
cluster.shutdown();
|
cluster.shutdown();
|
||||||
|
|
||||||
|
|
|
@ -31,6 +31,7 @@ import org.apache.hadoop.fs.Path;
|
||||||
import org.apache.hadoop.hdfs.DFSConfigKeys;
|
import org.apache.hadoop.hdfs.DFSConfigKeys;
|
||||||
import org.apache.hadoop.hdfs.DFSTestUtil;
|
import org.apache.hadoop.hdfs.DFSTestUtil;
|
||||||
import org.apache.hadoop.hdfs.MiniDFSCluster;
|
import org.apache.hadoop.hdfs.MiniDFSCluster;
|
||||||
|
import org.apache.hadoop.hdfs.MiniDFSNNTopology;
|
||||||
import org.apache.hadoop.hdfs.tools.DFSAdmin;
|
import org.apache.hadoop.hdfs.tools.DFSAdmin;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
|
@ -47,8 +48,9 @@ public class TestDeleteBlockPool {
|
||||||
try {
|
try {
|
||||||
conf.set(DFSConfigKeys.DFS_FEDERATION_NAMESERVICES,
|
conf.set(DFSConfigKeys.DFS_FEDERATION_NAMESERVICES,
|
||||||
"namesServerId1,namesServerId2");
|
"namesServerId1,namesServerId2");
|
||||||
cluster = new MiniDFSCluster.Builder(conf).federation(true).numNameNodes(
|
cluster = new MiniDFSCluster.Builder(conf)
|
||||||
2).numDataNodes(2).build();
|
.nnTopology(MiniDFSNNTopology.simpleFederatedTopology(2))
|
||||||
|
.numDataNodes(2).build();
|
||||||
|
|
||||||
cluster.waitActive();
|
cluster.waitActive();
|
||||||
|
|
||||||
|
@ -155,8 +157,9 @@ public class TestDeleteBlockPool {
|
||||||
try {
|
try {
|
||||||
conf.set(DFSConfigKeys.DFS_FEDERATION_NAMESERVICES,
|
conf.set(DFSConfigKeys.DFS_FEDERATION_NAMESERVICES,
|
||||||
"namesServerId1,namesServerId2");
|
"namesServerId1,namesServerId2");
|
||||||
cluster = new MiniDFSCluster.Builder(conf).federation(true).numNameNodes(
|
cluster = new MiniDFSCluster.Builder(conf)
|
||||||
2).numDataNodes(1).build();
|
.nnTopology(MiniDFSNNTopology.simpleFederatedTopology(2))
|
||||||
|
.numDataNodes(1).build();
|
||||||
|
|
||||||
cluster.waitActive();
|
cluster.waitActive();
|
||||||
|
|
||||||
|
|
|
@ -30,6 +30,7 @@ import org.apache.hadoop.hdfs.DFSTestUtil;
|
||||||
import org.apache.hadoop.hdfs.DFSUtil;
|
import org.apache.hadoop.hdfs.DFSUtil;
|
||||||
import org.apache.hadoop.hdfs.HdfsConfiguration;
|
import org.apache.hadoop.hdfs.HdfsConfiguration;
|
||||||
import org.apache.hadoop.hdfs.MiniDFSCluster;
|
import org.apache.hadoop.hdfs.MiniDFSCluster;
|
||||||
|
import org.apache.hadoop.hdfs.MiniDFSNNTopology;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
|
|
||||||
|
@ -41,12 +42,13 @@ public class TestMulitipleNNDataBlockScanner {
|
||||||
String bpids[] = new String[3];
|
String bpids[] = new String[3];
|
||||||
FileSystem fs[] = new FileSystem[3];
|
FileSystem fs[] = new FileSystem[3];
|
||||||
|
|
||||||
public void setUp(int port) throws IOException {
|
public void setUp() throws IOException {
|
||||||
conf = new HdfsConfiguration();
|
conf = new HdfsConfiguration();
|
||||||
conf.setInt(DFSConfigKeys.DFS_BLOCK_SIZE_KEY, 100);
|
conf.setInt(DFSConfigKeys.DFS_BLOCK_SIZE_KEY, 100);
|
||||||
conf.setInt(DFSConfigKeys.DFS_BYTES_PER_CHECKSUM_KEY, 100);
|
conf.setInt(DFSConfigKeys.DFS_BYTES_PER_CHECKSUM_KEY, 100);
|
||||||
cluster = new MiniDFSCluster.Builder(conf).numNameNodes(3).nameNodePort(
|
cluster = new MiniDFSCluster.Builder(conf)
|
||||||
port).build();
|
.nnTopology(MiniDFSNNTopology.simpleFederatedTopology(3))
|
||||||
|
.build();
|
||||||
for (int i = 0; i < 3; i++) {
|
for (int i = 0; i < 3; i++) {
|
||||||
cluster.waitActive(i);
|
cluster.waitActive(i);
|
||||||
}
|
}
|
||||||
|
@ -65,7 +67,7 @@ public class TestMulitipleNNDataBlockScanner {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testDataBlockScanner() throws IOException, InterruptedException {
|
public void testDataBlockScanner() throws IOException, InterruptedException {
|
||||||
setUp(9923);
|
setUp();
|
||||||
try {
|
try {
|
||||||
DataNode dn = cluster.getDataNodes().get(0);
|
DataNode dn = cluster.getDataNodes().get(0);
|
||||||
for (int i = 0; i < 3; i++) {
|
for (int i = 0; i < 3; i++) {
|
||||||
|
@ -89,9 +91,10 @@ public class TestMulitipleNNDataBlockScanner {
|
||||||
@Test
|
@Test
|
||||||
public void testBlockScannerAfterRefresh() throws IOException,
|
public void testBlockScannerAfterRefresh() throws IOException,
|
||||||
InterruptedException {
|
InterruptedException {
|
||||||
setUp(9933);
|
setUp();
|
||||||
try {
|
try {
|
||||||
Configuration conf = new HdfsConfiguration(cluster.getConfiguration(0));
|
Configuration dnConf = cluster.getDataNodes().get(0).getConf();
|
||||||
|
Configuration conf = new HdfsConfiguration(dnConf);
|
||||||
StringBuilder namenodesBuilder = new StringBuilder();
|
StringBuilder namenodesBuilder = new StringBuilder();
|
||||||
|
|
||||||
String bpidToShutdown = cluster.getNamesystem(2).getBlockPoolId();
|
String bpidToShutdown = cluster.getNamesystem(2).getBlockPoolId();
|
||||||
|
@ -140,7 +143,7 @@ public class TestMulitipleNNDataBlockScanner {
|
||||||
@Test
|
@Test
|
||||||
public void testBlockScannerAfterRestart() throws IOException,
|
public void testBlockScannerAfterRestart() throws IOException,
|
||||||
InterruptedException {
|
InterruptedException {
|
||||||
setUp(9943);
|
setUp();
|
||||||
try {
|
try {
|
||||||
cluster.restartDataNode(0);
|
cluster.restartDataNode(0);
|
||||||
cluster.waitActive();
|
cluster.waitActive();
|
||||||
|
|
|
@ -26,6 +26,9 @@ import java.net.InetSocketAddress;
|
||||||
import org.apache.hadoop.conf.Configuration;
|
import org.apache.hadoop.conf.Configuration;
|
||||||
import org.apache.hadoop.hdfs.DFSConfigKeys;
|
import org.apache.hadoop.hdfs.DFSConfigKeys;
|
||||||
import org.apache.hadoop.hdfs.MiniDFSCluster;
|
import org.apache.hadoop.hdfs.MiniDFSCluster;
|
||||||
|
import org.apache.hadoop.hdfs.MiniDFSNNTopology;
|
||||||
|
import org.apache.hadoop.hdfs.MiniDFSNNTopology.NNConf;
|
||||||
|
import org.apache.hadoop.hdfs.MiniDFSNNTopology.NSConf;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -43,9 +46,13 @@ public class TestRefreshNamenodes {
|
||||||
Configuration conf = new Configuration();
|
Configuration conf = new Configuration();
|
||||||
MiniDFSCluster cluster = null;
|
MiniDFSCluster cluster = null;
|
||||||
try {
|
try {
|
||||||
conf.set(DFSConfigKeys.DFS_FEDERATION_NAMESERVICES, "namesServerId1");
|
MiniDFSNNTopology topology = new MiniDFSNNTopology()
|
||||||
cluster = new MiniDFSCluster.Builder(conf).federation(true).
|
.addNameservice(new NSConf("ns1").addNN(
|
||||||
numNameNodes(1).nameNodePort(nnPort1).build();
|
new NNConf(null).setIpcPort(nnPort1)))
|
||||||
|
.setFederation(true);
|
||||||
|
cluster = new MiniDFSCluster.Builder(conf)
|
||||||
|
.nnTopology(topology)
|
||||||
|
.build();
|
||||||
|
|
||||||
DataNode dn = cluster.getDataNodes().get(0);
|
DataNode dn = cluster.getDataNodes().get(0);
|
||||||
assertEquals(1, dn.getAllBpOs().length);
|
assertEquals(1, dn.getAllBpOs().length);
|
||||||
|
|
|
@ -97,4 +97,11 @@ public class NameNodeAdapter {
|
||||||
ns.readUnlock();
|
ns.readUnlock();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return the FSNamesystem stats
|
||||||
|
*/
|
||||||
|
public static long[] getStats(final FSNamesystem fsn) {
|
||||||
|
return fsn.getStats();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -46,6 +46,7 @@ import org.apache.hadoop.hdfs.DFSUtil.ErrorSimulator;
|
||||||
import org.apache.hadoop.hdfs.DistributedFileSystem;
|
import org.apache.hadoop.hdfs.DistributedFileSystem;
|
||||||
import org.apache.hadoop.hdfs.HdfsConfiguration;
|
import org.apache.hadoop.hdfs.HdfsConfiguration;
|
||||||
import org.apache.hadoop.hdfs.MiniDFSCluster;
|
import org.apache.hadoop.hdfs.MiniDFSCluster;
|
||||||
|
import org.apache.hadoop.hdfs.MiniDFSNNTopology;
|
||||||
import org.apache.hadoop.hdfs.protocol.HdfsConstants.SafeModeAction;
|
import org.apache.hadoop.hdfs.protocol.HdfsConstants.SafeModeAction;
|
||||||
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants.StartupOption;
|
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants.StartupOption;
|
||||||
import org.apache.hadoop.hdfs.server.common.Storage.StorageDirectory;
|
import org.apache.hadoop.hdfs.server.common.Storage.StorageDirectory;
|
||||||
|
@ -1072,8 +1073,9 @@ public class TestCheckpoint extends TestCase {
|
||||||
String nameserviceId2 = "ns2";
|
String nameserviceId2 = "ns2";
|
||||||
conf.set(DFSConfigKeys.DFS_FEDERATION_NAMESERVICES, nameserviceId1
|
conf.set(DFSConfigKeys.DFS_FEDERATION_NAMESERVICES, nameserviceId1
|
||||||
+ "," + nameserviceId2);
|
+ "," + nameserviceId2);
|
||||||
MiniDFSCluster cluster = new MiniDFSCluster.Builder(conf).numNameNodes(2)
|
MiniDFSCluster cluster = new MiniDFSCluster.Builder(conf)
|
||||||
.nameNodePort(9928).build();
|
.nnTopology(MiniDFSNNTopology.simpleFederatedTopology(2))
|
||||||
|
.build();
|
||||||
Configuration snConf1 = new HdfsConfiguration(cluster.getConfiguration(0));
|
Configuration snConf1 = new HdfsConfiguration(cluster.getConfiguration(0));
|
||||||
Configuration snConf2 = new HdfsConfiguration(cluster.getConfiguration(1));
|
Configuration snConf2 = new HdfsConfiguration(cluster.getConfiguration(1));
|
||||||
InetSocketAddress nn1RpcAddress =
|
InetSocketAddress nn1RpcAddress =
|
||||||
|
|
|
@ -514,11 +514,10 @@ public class TestStartup extends TestCase {
|
||||||
InetAddress inetAddress = InetAddress.getByAddress(b);
|
InetAddress inetAddress = InetAddress.getByAddress(b);
|
||||||
list.add(inetAddress.getHostName());
|
list.add(inetAddress.getHostName());
|
||||||
writeConfigFile(localFileSys, hostsFile, list);
|
writeConfigFile(localFileSys, hostsFile, list);
|
||||||
int numNameNodes = 1;
|
|
||||||
int numDatanodes = 1;
|
int numDatanodes = 1;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
cluster = new MiniDFSCluster.Builder(conf).numNameNodes(numNameNodes)
|
cluster = new MiniDFSCluster.Builder(conf)
|
||||||
.numDataNodes(numDatanodes).setupHostsFile(true).build();
|
.numDataNodes(numDatanodes).setupHostsFile(true).build();
|
||||||
cluster.waitActive();
|
cluster.waitActive();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue