In 0.94, I don't see deprecation information for getZooKeeperWatcher() In 0.95, I found: * Retrieve a shared ZooKeeperWatcher. You must close it it once you've have finished with it. * @return The shared instance. Never returns null. */ ZooKeeperKeepAliveConnection getKeepAliveZooKeeperWatcher()
On Fri, Aug 16, 2013 at 9:58 AM, Demai Ni <nid...@gmail.com> wrote: > hi, folks, > > I am writing some code to get the zookeeper while hbase is offline. > > conf = HBaseConfiguration.create(); > .... > connection = HConnectionManager.getConnection(conf); > zkw = connection.*getZooKeeperWatcher();* > replicationZK = new ReplicationZookeeper(connection, conf, zkw); > > the goal is to create a new replicationZookeeper. Well, the above code > works, except connection.getZooKeeperWatcher() is deprecated in 0.94. > > Is there a way that I can complete the same logic without using the > deprecated method? many thanks > > Demai >