ZooKeeper个人笔记之节点的监听
create
- public String create(String path,
- byte[] data,
- List<ACL> acl,
- CreateMode createMode)
- throws KeeperException,
- InterruptedException
1.不支持递归创建节点,比如你要创建/master/a,如果master不存在,你就不能创建a( KeeperException.NoNode)。
2.不可以再ephemeral类型的节点下创建子节点(KeeperException.NoChildrenForEphemerals)。
3.如果指定的节点已经存在,会触发KeeperException.NodeExists 异常,当然了对于sequential类型的,不会抛出这个异常。
4.数据内容不能超过1M,否则将抛出KeeperException异常。
对于一个节点a的整个生命周期中,可以对如下几种情况进行监听:
1.成功创建节点a
2.成功删除节点a
3.节点a数据内容发生了改变
4.节点a的子列表发生了改变
想要在一个节点创建后,客户端得到通知,客户端需要在exists API中注册watcher。
exists
这个函数很特殊,因为他可以监听一个尚未存在的节点,这是getData,getChildren不能做到的。exists可以监听一个节点的生命周期:从无到有,节点数据的变化,从有到无。
在传递给exists的watcher里,当path指定的节点被成功创建后,watcher会收到NodeCreated事件通知。当path所指定的节点的数据内容发送了改变后,wather会受到NodeDataChanged事件通知。
- public Stat exists(String path,
- Watcher watcher)
- throws KeeperException,
- InterruptedException
- Return the stat of the node of the given path. Return null if no such a node exists.
- If the watch is non-null and the call is successful (no exception is thrown), a watch will be left on the node with the given path. The watch will be triggered by a successful operation that creates/delete the node or sets the data on the node.
返回path指定的节点的stat,如果这个节点不存在,就返回null。当这个节点被创建,数据内容被修改,被删除,所有对这个节点注册了watcher的客户端,都会收到对应的事件通知。
这里最需要注意的就是,exists可以监听一个未存在的节点,这是他与getData,getChildren本质的区别。
getData
- public byte[] getData(String path,
- Watcher watcher,
- Stat stat)
- throws KeeperException,
- InterruptedException
- Return the data and the stat of the node of the given path.
- If the watch is non-null and the call is successful (no exception is thrown), a watch will be left on the node with the given path. The watch will be triggered by a successful operation that sets data on the node, or deletes the node.
- A KeeperException with error code KeeperException.NoNode will be thrown if no node with the given path exists.
getData也可以监听一个节点,但是,如果他所要监听的节点不存在,那么回抛出一个KeeperException异常并且这个异常的错误码是NoNode。
满足以下两个条件,watcher才有可能受到事件通知:
1. 什么时候这个wacher被注册到path指定的几点上呢?第一你指定了watcher,第二,getChildren没有抛出任何异常。
2. path指定的节点被成功删除后,watcher可以收到通知。
path指定的节点的子列表成功的添加或者删除了新的节点,watcher也会收到通知。
如果path指定的节点不存在,会抛出异常。
getChildren
- public List<String> getChildren(String path,
- boolean watch)
- throws KeeperException,
- InterruptedException
- Return the list of the children of the node of the given path.
- If the watch is true and the call is successful (no exception is thrown), a watch will be left on the node with the given path. The watch willbe triggered by a successful operation that deletes the node of the given path or creates/delete a child under the node.
- The list of children returned is not sorted and no guarantee is provided as to its natural or lexical order.
- A KeeperException with error code KeeperException.NoNode will be thrown if no node with the given path exists.
满足以下两个条件,watcher才有可能受到事件通知:
1. 什么时候这个wacher被注册到path指定的几点上呢?第一你指定了watcher,第二,getChildren没有抛出任何异常。
2. path指定的节点被成功删除后,watcher可以收到通知。
path指定的节点的数据内容发生改变,watcher会收到NodeChildrenChanged通知。
如果path指定的节点不存在,会抛出异常。
作者:FrancisWang
邮箱:franciswbs@163.com
出处:http://www.cnblogs.com/francisYoung/
本文地址:http://www.cnblogs.com/francisYoung/p/5224491.html
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
ZooKeeper个人笔记之节点的监听的更多相关文章
- Zookeeper开源客户端Curator之事件监听详解
Curator对Zookeeper典型场景之事件监听进行封装,提供了使用参考.这篇博文笔者带领大家了解一下Curator的实现方式. 引入依赖 对于Curator封装Zookeeper的典型场景使用都 ...
- Zookeeper命令行操作(常用命令;客户端连接;查看znode路径;创建节点;获取znode数据,查看节点内容,设置节点内容,删除节点;监听znode事件;telnet连接zookeeper)
8.1.常用命令 启动ZK服务 bin/zkServer.sh start 查看ZK服务状态 bin/zkServer.sh status 停止ZK服务 bin/zkServer.sh stop 重启 ...
- ZooKeeper(3.4.5) 使用Curator监听事件
转载:http://www.mamicode.com/info-detail-494364.html 标签: ZooKeeper原生的API支持通过注册Watcher来进行事件监听,但是Watcher ...
- zookeeper curator使用caches实现各种监听
1.篇首语 curator是zookeeper的一个高级api开发包.封装了zookeeper众多的recipes,并且实现了一些新的recipes原语,最重要的是基于zookeeper提供的各种机制 ...
- 如何在cocos中为节点添加监听事件
一般在监听键盘事件时,可是采用以下方式来监听键盘事件: 以及记得定义取消监听的函数(这个摧毁函数会自己调用吗?): 同时这里还有一种传统的监听方式: 但是cocos官方的文档建议我们不要使用这种方式, ...
- angularJS1笔记-(2)-$watch方法监听变量的变化
html: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF ...
- Zookeeper 学习笔记之 节点个数
zookeeper的节点配置的个数推荐是奇数个这是为什么呢? 选举机制 两种情况无法选出leader: 整个集群只有2台服务器(注意不是只剩2台,而是集群的总节点数为2) 整个集群超过半数机器挂掉. ...
- socket.io笔记二之事件监听回调函数接收一个客户端的回调函数
//服务端 socket.on('test', function (name, fn) { console.log(name) //输出yes fn('woot'); }); //客户端 socket ...
- jQuery-mobile 学习笔记之三(事件监听)
续上 触摸事件 - 当用户触摸屏幕时触发(敲击和滑动) 滚动事件 - 当上下滚动时触发 方向事件 - 当设备垂直或水平旋转时触发 页面事件 - 当页面被显示.隐藏.创建.载入以及/或卸载时触发 一.初 ...
随机推荐
- 【ESRI论坛6周年征文】ArcEngine注记(Anno/ Label/Element等)处理专题 -入门篇
原发表于ESRI中国社区,转过来.我的社区帐号:jhlong http://bbs.esrichina-bj.cn/ESRI/viewthread.php?tid=122097 ----------- ...
- 线程安全的无锁RingBuffer的实现
这里的线程安全,是指一个读线程和一个写线程,读写两个线程是安全的,而不是说多个读线程和多个写线程是安全的.. 在程序设计中,我们有时会遇到这样的情况,一个线程将数据写到一个buffer中,另外一个线程 ...
- Python之路【第十八篇】Django小项目webQQ实现
WEBQQ的实现的几种方式 1.HTTP协议特点 首先这里要知道HTTP协议的特点:短链接.无状态! 在不考虑本地缓存的情况举例来说:咱们在连接博客园的时候,当tcp连接后,我会把我自己的http头发 ...
- xml格式的数据转化成数组
将得到的xml格式的数据转化成数组 <?php //构造xml $url = "http://api.map.baidu.com/telematics/v3/weather?locat ...
- 2016-03-04记录 H264.TXT 转成 H264.h264
H264.TXT文件 来源于板子上串口输出的数据,需要把该数据转成 *.h264用 H264的软件打开观察 txt中数据截图如下: MATLAB读入数据的代码: clc;close all;clear ...
- [NHibernate]代码生成器的使用
目录 写在前面 文档与系列文章 代码生成器的使用 总结 写在前面 前面的文章介绍了nhibernate的相关知识,都是自己手敲的代码,有时候显得特别的麻烦,比如你必须编写持久化类,映射文件等等,举得例 ...
- 【09-14】eclipse学习笔记
eclipse安装class文件反编译插件jadClipse /** 1. 下载JadClipse的jar包 2. 下载Jad反编译器 3. 将JarClipse jar包放到eclipse plug ...
- oracle分区表知识
在F5中查看执行计划的时候总是看到很多信息: range分区 执行计划中出现的: 分区表,按 n1 ,n2 分区 partition range single:访问单个分区 partition ran ...
- JavaScript操作JSON的方法总结,JSON字符串转换为JSON对象
JSON(JavaScript Object Notation) 是一种轻量级的数据交换格式,采用完全独立于语言的文本格式,是理想的数据交换格式.同时,JSON是 JavaScript 原生格式,这意 ...
- Linux进程间通信(三):匿名管道 popen()、pclose()、pipe()、close()、dup()、dup2()
在前面,介绍了一种进程间的通信方式:使用信号,我们创建通知事件,并通过它引起响应,但传递的信息只是一个信号值.这里将介绍另一种进程间通信的方式——匿名管道,通过它进程间可以交换更多有用的数据. 一.什 ...