You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "stack (JIRA)" <ji...@apache.org> on 2009/07/03 21:34:47 UTC

[jira] Created: (HBASE-1610) On regionserver reinit on zk expiration, spews thousands of "Unable to set watcher on ZooKeeper master address. Retrying." in a few seconds

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.