HDFS-17449. Fix ill-formed decommission host name and port pair triggers IndexOutOfBound error (#6691). Contributed by ConfX
Signed-off-by: Ayush Saxena <ayushsaxena@apache.org>
This commit is contained in:
parent
a1ae35e691
commit
73e6931ed0
@ -106,6 +106,10 @@ public void initOutOfServiceHosts(List<String> decommissionHostNameAndPorts,
|
||||
for (String hostNameAndPort : decommissionHostNameAndPorts) {
|
||||
DatanodeAdminProperties dn = new DatanodeAdminProperties();
|
||||
String[] hostAndPort = hostNameAndPort.split(":");
|
||||
if (hostAndPort.length != 2) {
|
||||
throw new IllegalArgumentException("The decommision host name and port format is "
|
||||
+ "invalid. The format should be in <host>:<port>, not " + hostNameAndPort);
|
||||
}
|
||||
dn.setHostName(hostAndPort[0]);
|
||||
dn.setPort(Integer.parseInt(hostAndPort[1]));
|
||||
dn.setAdminState(AdminStates.DECOMMISSIONED);
|
||||
|
Loading…
Reference in New Issue
Block a user