On regionserver reinit on zk expiration, spews thousands of "Unable to set
watcher on ZooKeeper master address. Retrying." in a few seconds
-------------------------------------------------------------------------------------------------------------------------------------------
Key: HBASE-1610
URL: https://issues.apache.org/jira/browse/HBASE-1610
Project: Hadoop HBase
Issue Type: Bug
Reporter: stack
It looks like whats going on is that the close flag has been set so the
sleeper.sleep in below is not having an effect -- but looking in code, I see
the close flag unset as part of initialization so I'm not sure whats up.
private void watchMasterAddress() {
while (!stopRequested.get() && !zooKeeperWrapper.watchMasterAddress(this)) {
LOG.warn("Unable to set watcher on ZooKeeper master address. Retrying.");
sleeper.sleep();
}
}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.