我一直在阅读有关使用zookeeper for configuration managment的信息。
我知道有一个Apache策展人可以轻松地与zookeeper进行交互。
我有一些客户端连接到一组资源。他们必须以同样的方式使用这些资源。像资源之间的分片和主人选一样。
我想使用zookeeper,以便如果客户在给定时间内注意到其中一个资源已关闭,则可以更改配置,其他客户端可以立即开始使用新配置。
因此,一个客户端将配置写入zookeeper中znode的路径中,其他客户端正在观察该路径。
如何在策展人中设置数据:
zk.setData().forPath(pathName, "data".getBytes());
如何在策展人中观看路径:
zk.getData().usingWatcher(watcher).forPath(pathName);
现在,当路径的值发生变化并且监视触发时,我必须获取路径的新值。 我该怎么做?
这总是在proccess()
中返回nullzk.getData().watched().inBackground().forPath(pathName)
其他问题:As it says in the documentation,在我获得新值后,我是否必须再次设置观察者?
守望者的来源:
CuratorWatcher watcher = new CuratorWatcher(){
public void process(WatchedEvent event) {
System.out.println("event wt");
System.out.println(ToStringBuilder.reflectionToString(event));
try {
System.out.println(zk.getData().watched().inBackground().forPath(pathName));
} catch (Exception e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
};
System.out.println("event wt");
try {
zk.getData().usingWatcher(this).forPath(pathName);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}};
答案 0 :(得分:0)
* Get children and set the given watcher on the node.
*/
return client.getChildren().usingWatcher(watcher).forPath(path);
或者您可以使用CuratorListener
/**
* Get children and set a watcher on the node. The watcher notification will come through the
* CuratorListener (see setDataAsync() above).
*/
return client.getChildren().watched().forPath(path);