HDFS-49. MiniDFSCluster.stopDataNode will always shut down a node in the cluster if a matching name is not found. (stevel)

This commit is contained in:
Steve Loughran 2015-01-27 11:10:46 +00:00
parent 61b4116b4b
commit aa16173a0d
2 changed files with 11 additions and 3 deletions

View File

@ -505,6 +505,9 @@ Release 2.7.0 - UNRELEASED
HDFS-7676. Fix TestFileTruncate to avoid bug of HDFS-7611. (shv)
HDFS-49. MiniDFSCluster.stopDataNode will always shut down a node in
the cluster if a matching name is not found. (stevel)
Release 2.6.1 - UNRELEASED
INCOMPATIBLE CHANGES

View File

@ -1926,6 +1926,9 @@ public boolean changeGenStampOfBlock(int dnIndex, ExtendedBlock blk,
/*
* Shutdown a particular datanode
* @param i node index
* @return null if the node index is out of range, else the properties of the
* removed node
*/
public synchronized DataNodeProperties stopDataNode(int i) {
if (i < 0 || i >= dataNodes.size()) {
@ -1944,18 +1947,20 @@ public synchronized DataNodeProperties stopDataNode(int i) {
/*
* Shutdown a datanode by name.
* @return the removed datanode or null if there was no match
*/
public synchronized DataNodeProperties stopDataNode(String dnName) {
int i;
for (i = 0; i < dataNodes.size(); i++) {
int node = -1;
for (int i = 0; i < dataNodes.size(); i++) {
DataNode dn = dataNodes.get(i).datanode;
LOG.info("DN name=" + dnName + " found DN=" + dn +
" with name=" + dn.getDisplayName());
if (dnName.equals(dn.getDatanodeId().getXferAddr())) {
node = i;
break;
}
}
return stopDataNode(i);
return stopDataNode(node);
}
/**