HBASE-4045 [replication] NPE in ReplicationSource when ZK is gone
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1141313 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f0120d5a47
commit
1d0975f581
|
@ -381,6 +381,7 @@ Release 0.90.4 - Unreleased
|
||||||
(Vandana Ayyalasomayajula via Ted Yu)
|
(Vandana Ayyalasomayajula via Ted Yu)
|
||||||
HBASE-3984 CT.verifyRegionLocation isn't doing a very good check,
|
HBASE-3984 CT.verifyRegionLocation isn't doing a very good check,
|
||||||
can delay cluster recovery
|
can delay cluster recovery
|
||||||
|
HBASE-4045 [replication] NPE in ReplicationSource when ZK is gone
|
||||||
|
|
||||||
IMPROVEMENT
|
IMPROVEMENT
|
||||||
HBASE-3882 hbase-config.sh needs to be updated so it can auto-detects the
|
HBASE-3882 hbase-config.sh needs to be updated so it can auto-detects the
|
||||||
|
|
|
@ -219,16 +219,16 @@ public class ReplicationZookeeper {
|
||||||
/**
|
/**
|
||||||
* Get the list of all the region servers from the specified peer
|
* Get the list of all the region servers from the specified peer
|
||||||
* @param zkw zk connection to use
|
* @param zkw zk connection to use
|
||||||
* @return list of region server addresses
|
* @return list of region server addresses or an empty list if the slave
|
||||||
|
* is unavailable
|
||||||
*/
|
*/
|
||||||
private List<ServerName> fetchSlavesAddresses(ZooKeeperWatcher zkw) {
|
private List<ServerName> fetchSlavesAddresses(ZooKeeperWatcher zkw) {
|
||||||
List<ServerName> rss = null;
|
|
||||||
try {
|
try {
|
||||||
rss = listChildrenAndGetAsServerNames(zkw, zkw.rsZNode);
|
return listChildrenAndGetAsServerNames(zkw, zkw.rsZNode);
|
||||||
} catch (KeeperException e) {
|
} catch (KeeperException e) {
|
||||||
LOG.warn("Cannot get peer's region server addresses", e);
|
LOG.warn("Cannot get peer's region server addresses", e);
|
||||||
|
return new ArrayList<ServerName>(0);
|
||||||
}
|
}
|
||||||
return rss;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue