HDFS-5458. Datanode failed volume threshold ignored if exception is thrown in getDataDirsFromURIs. Contributed by Mike Mellenthin.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1539091 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4550eac099
commit
8639ecb26d
|
@ -585,6 +585,9 @@ Release 2.2.1 - UNRELEASED
|
||||||
HDFS-5456. NameNode startup progress creates new steps if caller attempts to
|
HDFS-5456. NameNode startup progress creates new steps if caller attempts to
|
||||||
create a counter for a step that doesn't already exist. (cnauroth)
|
create a counter for a step that doesn't already exist. (cnauroth)
|
||||||
|
|
||||||
|
HDFS-5458. Datanode failed volume threshold ignored if exception is thrown
|
||||||
|
in getDataDirsFromURIs. (Mike Mellenthin via wang)
|
||||||
|
|
||||||
Release 2.2.0 - 2013-10-13
|
Release 2.2.0 - 2013-10-13
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -1770,7 +1770,7 @@ public class DataNode extends Configured
|
||||||
} catch (IOException ioe) {
|
} catch (IOException ioe) {
|
||||||
LOG.warn("Invalid " + DFS_DATANODE_DATA_DIR_KEY + " "
|
LOG.warn("Invalid " + DFS_DATANODE_DATA_DIR_KEY + " "
|
||||||
+ dir + " : ", ioe);
|
+ dir + " : ", ioe);
|
||||||
invalidDirs.append("\"").append(dir.getCanonicalPath()).append("\" ");
|
invalidDirs.append("\"").append(dirURI.getPath()).append("\" ");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (dirs.size() == 0) {
|
if (dirs.size() == 0) {
|
||||||
|
|
Loading…
Reference in New Issue