连接zk
1
2
cd bin
zkCli.sh -timeout 5000 -server 27.154.242.214:5091

输入h,回车查看帮助
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[zk: 27.154.242.214:5091(CONNECTED) 2] h
ZooKeeper -server host:port cmd args
    stat path [watch]
    set path data [version]
    ls path [watch]
    delquota [-n|-b] path
    ls2 path [watch]
    setAcl path acl
    setquota -n|-b val path
    history 
    redo cmdno
    printwatches on|off
    delete path [version]
    sync path
    listquota path
    rmr path
    get path [watch]
    create [-s] [-e] path data acl
    addauth scheme auth
    quit 
    getAcl path
    close 
    connect host:port

创建节点
1
2
[zk: 27.154.242.214:5091(CONNECTED) 11] create /note1 123
Created /note1

-s 表示是顺序节点 -e表示为临时节点

创建临时节点
(会话结束节点就被删除,qiut(退出) 然后在登陆 )
1
2
[zk: 27.154.242.214:5091(CONNECTED) 11] create
-e 
/note2 123
Created /note2

顺序节点

(应用场景:分布式的主键生成器)

1
2
3
4
[zk: 27.154.242.214:5091(CONNECTED) 1] create -s /note1/note13 1333
Created /note1/note130000000002
[zk: 27.154.242.214:5091(CONNECTED) 2] create -s /note1/note13 1333
Created /note1/note130000000003


查看节点状态

1
2
3
4
5
6
7
8
9
10
11
12
[zk: 27.154.242.214:5091(CONNECTED) 12] stat /note1
cZxid = 0xc0b
ctime = Sun Aug 21 07:42:06 CST 2016
mZxid = 0xc0b
mtime = Sun Aug 21 07:42:06 CST 2016
pZxid = 0xc0b
cversion = 0
dataVersion = 0
aclVersion = 0
ephemeralOwner = 0x0
dataLength = 3
numChildren = 0
说明:每一次操作都是一个事务,每一个事务都有一个事务id
2. cZxid 该节点被创建的时候的事务id
3. ctime 节点被创建的时间
4. mZxid 最后一次更新的事务id
5. mtime 最后一次更新的时间
6. pZxid 该节点的子节点最后一次修改的事务id(修改子节点的内容不算)
7. cversion 子节点的版本号
8. dataVersion 数据版本号
9. aclVersion acl权限版本号
10. ephemeralOwner 创建临时节点的事务id(永久节点的话 这个值固定为0)
11. dataLength 当前节点存放数据长度
12. numChinldren 当前节点拥有子节点的个数

获取当前节点存储的数据的内容
1
2
3
4
5
6
7
8
9
10
11
12
13
[zk: 27.154.242.214:5091(CONNECTED) 13] get /note1
123
cZxid = 0xc0b
ctime = Sun Aug 21 07:42:06 CST 2016
mZxid = 0xc0b
mtime = Sun Aug 21 07:42:06 CST 2016
pZxid = 0xc0b
cversion = 0
dataVersion = 0
aclVersion = 0
ephemeralOwner = 0x0
dataLength = 3
numChildren = 0

ls2列出当前节点的子节点同时输出stat信息

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[zk: 27.154.242.214:5091(CONNECTED) 16] create /note1/note11 456
[zk: 27.154.242.214:5091(CONNECTED) 18] create /note1/note12 789
[zk: 27.154.242.214:5091(CONNECTED) 19] ls2 /note1              
[note12, note11]
cZxid = 0xc0b
ctime = Sun Aug 21 07:42:06 CST 2016
mZxid = 0xc0b
mtime = Sun Aug 21 07:42:06 CST 2016
pZxid = 0xc0d
cversion = 2
dataVersion = 0
aclVersion = 0
ephemeralOwner = 0x0
dataLength = 3
numChildren = 2

修改
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[zk: 27.154.242.214:5091(CONNECTED) 8] set /note1/note11 111
cZxid = 0xc0c
ctime = Sun Aug 21 07:47:28 CST 2016
mZxid = 0xc15
mtime = Sun Aug 21 09:12:07 CST 2016
pZxid = 0xc0c
cversion = 0
dataVersion = 1
aclVersion = 0
ephemeralOwner = 0x0
dataLength = 3
numChildren = 0
[zk: 27.154.242.214:5091(CONNECTED) 9] get /note1/note11    
111
cZxid = 0xc0c
ctime = Sun Aug 21 07:47:28 CST 2016
mZxid = 0xc15
mtime = Sun Aug 21 09:12:07 CST 2016
pZxid = 0xc0c
cversion = 0
dataVersion = 1
aclVersion = 0
ephemeralOwner = 0x0
dataLength = 3
numChildren = 0
再进行修改,dataversion会一直增加上去

删除节点

(rmr 循环删除节点及其子节点)

1
2
3
4
5
6
7
8
[zk: 27.154.242.214:5091(CONNECTED) 10] delete /note1/note11
[zk: 27.154.242.214:5091(CONNECTED) 11] ls /note1           
[note12, note130000000002, note130000000003]
[zk: 27.154.242.214:5091(CONNECTED) 12] delete /note1
Node not empty: /note1
[zk: 27.154.242.214:5091(CONNECTED) 13] rmr /note1
[zk: 27.154.242.214:5091(CONNECTED) 14] ls /  
[server, zookeeper, config]

配额相关的指令

设置配额

[setquota -n|-b val path]

-n限制子节点的个数 –b限制数据的长度

1
2
3
4
5
6
7
8
9
10
[zk: 27.154.242.214:5091(CONNECTED) 18] create /note1 123    
Created /note1
[zk: 27.154.242.214:5091(CONNECTED) 19] setquota -n 2 /note1 
Comment: the parts are option -n val 2 path /note1
[zk: 27.154.242.214:5091(CONNECTED) 20] create /note1/note11 11 
Created /note1/note11
[zk: 27.154.242.214:5091(CONNECTED) 21] create /note1/note12 12
Created /note1/note12
[zk: 27.154.242.214:5091(CONNECTED) 22] create /note1/note13 13  
Created /note1/note13

发现超限了仅仅在日志记录超限信息的警告不会有异常如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
[lzmhdev@lzmh01 zookeeper-3.4.8]$ cd bin 
[lzmhdev@lzmh01 bin]$ ls
README.txt  zkCleanup.sh  zkCli.cmd  zkCli.sh  zkEnv.cmd  zkEnv.sh  zkServer.cmd  zkServer.sh  zookeeper.out
[lzmhdev@lzmh01 bin]$ tail -f zookeeper.out 
    at java.lang.Thread.run(Thread.java:745)
2016-08-21 08:54:07,402 [myid:] - INFO  [NIOServerCxn.Factory:0.0.0.0/0.0.0.0:5091:NIOServerCnxn@1008] - Closed socket connection for client /123.59.54.18:34285 which had sessionid 0x156aa06f8d60001
2016-08-21 08:54:12,000 [myid:] - INFO  [SessionTracker:ZooKeeperServer@355] - Expiring session 0x156aa06f8d60001, timeout of 5000ms exceeded
2016-08-21 08:54:12,001 [myid:] - INFO  [ProcessThread(sid:0 cport:5091)::PrepRequestProcessor@489] - Processed session termination for sessionid: 0x156aa06f8d60001
2016-08-21 08:54:21,201 [myid:] - INFO  [NIOServerCxn.Factory:0.0.0.0/0.0.0.0:5091:NIOServerCnxnFactory@192] - Accepted socket connection from /123.59.54.18:34338
2016-08-21 08:54:21,205 [myid:] - INFO  [NIOServerCxn.Factory:0.0.0.0/0.0.0.0:5091:ZooKeeperServer@900] - Client attempting to establish new session at /123.59.54.18:34338
2016-08-21 08:54:21,223 [myid:] - INFO  [SyncThread:0:ZooKeeperServer@645] - Established session 0x156aa06f8d60002 with negotiated timeout 5000 for client /123.59.54.18:34338
2016-08-21 09:14:54,075 [myid:] - INFO  [ProcessThread(sid:0 cport:5091)::PrepRequestProcessor@651] - Got user-level KeeperException when processing sessionid:0x156aa06f8d60002 type:delete cxid:0x15 zxid:0xc17 txntype:-1 reqpath:n/a Error Path:/note1 Error:KeeperErrorCode = Directory not empty for /note1
2016-08-21 10:10:41,080 [myid:] - WARN  [SyncThread:0:DataTree@389] - Quota exceeded: /note1 count=3 limit=2

查看指定数据节点的配额情况

1
2
3
4
[zk: 27.154.242.214:5091(CONNECTED) 23] listquota /note1
absolute path is /zookeeper/quota/note1/zookeeper_limits
Output quota for /note1 count=2,bytes=-1
Output stat for /note1 count=4,bytes=9

-1 长度没有限制

删除配额

1
2
3
4
5
[zk: 27.154.242.214:5091(CONNECTED) 24] delquota -n /note1
[zk: 27.154.242.214:5091(CONNECTED) 25] listquota /note1  
absolute path is /zookeeper/quota/note1/zookeeper_limits
Output quota for /note1 count=-1,bytes=-1
Output stat for /note1 count=4,bytes=9

查看历史

并重复执行

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[zk: 27.154.242.214:5091(CONNECTED) 26] history
16 - create /note1
17 - setquota -n 2 /note1 
18 - create /note1 123
19 - setquota -n 2 /note1 
20 - create /note1/note11 11
21 - create /note1/note12 12
22 - create /note1/note13 13
23 - listquota /note1
24 - delquota -n /note1
25 - listquota /note1
26 - history
[zk: 27.154.242.214:5091(CONNECTED) 27] redo 25
absolute path is /zookeeper/quota/note1/zookeeper_limits
Output quota for /note1 count=-1,bytes=-1
Output stat for /note1 count=4,bytes=9
参考
        极客学院视频【链接:http://pan.baidu.com/s/1qYKPNyO 密码:nlz3】




ZooKeeper 客户端的使用的更多相关文章

  1. 【分布式】Zookeeper客户端

    一.前言 前篇博客分析了Zookeeper的序列化和通信协议,接着继续学习客户端,客户端是开发人员使用Zookeeper最主要的途径,很有必要弄懂客户端是如何与服务端通信的. 二.客户端 2.1 客户 ...

  2. zookeeper 客户端编程

    zookeeper是一个分布式的开源的分布式协调服务,用它可以来现同步服务,配置维护.zookeeper的稳定性也是可以保证的,笔者曾参与过的使用zookeeper的两个应用,一个是用zookeepe ...

  3. ZooKeeper客户端事件串行化处理

    为了提升系统的性能,进一步提高系统的吞吐能力,最近公司很多系统都在进行异步化改造.在异步化改造的过程中,肯定会比以前碰到更多的多线程问题,上周就碰到ZooKeeper客户端异步化过程中的一个死锁问题, ...

  4. zookeeper客户端操作

    ZooKeeper客户端 zkCli.sh 节点的增删改查 在 bin 目录下的  zkCli.sh  就是ZooKeeper客户端 ./zkCli.sh -timeout 5000  -server ...

  5. zookeeper客户端 zkCli使用及常用命令

    上篇(http://www.cnblogs.com/yangzhenlong/p/8270835.html)zk伪集群搭建好后,使用zkCli连接zk服务 切换到zk1/bin 目录,执行zkCli. ...

  6. Zookeeper客户端Curator基本API

    在使用zookeper的时候一般不使用原生的API,Curator,解决了很多Zookeeper客户端非常底层的细节开发工作,包括连接重连.反复注册Watcher和NodeExistsExceptio ...

  7. Zookeeper客户端Curator的使用,简单高效

    Curator是Netflix公司开源的一个Zookeeper客户端,与Zookeeper提供的原生客户端相比,Curator的抽象层次更高,简化了Zookeeper客户端的开发量. 1.引入依赖: ...

  8. Zookeeper客户端介绍

    客户端是开发人员使用Zookeeper的主要的途径,以下内容将对Zookeeper的内部原理进行详细的学习和讲解.ZooKeeper的客户端主要有一下几个核心组件组成: Zookeeper:提供客户端 ...

  9. ZooKeeper客户端 zkCli.sh 节点的增删改查

    zkCli.sh 在 bin 目录下的  zkCli.sh  就是ZooKeeper客户端 ./zkCli.sh -timeout 5000  -server 127.0.0.1:2181  客户端与 ...

  10. Zookeeper客户端Curator使用详解

    Zookeeper客户端Curator使用详解 前提 最近刚好用到了zookeeper,做了一个基于SpringBoot.Curator.Bootstrap写了一个可视化的Web应用: zookeep ...

随机推荐

  1. Docker 内核名字空间

    Docker 容器和 LXC 容器很相似,所提供的安全特性也差不多.当用 docker run 启动一个容器时,在后台 Docker 为容器创建了一个独立的名字空间和控制组集合. 名字空间提供了最基础 ...

  2. 20160225.CCPP体系详解(0035天)

    程序片段(01):CircleList.h+CircleList.c+main.c 内容概要:环形链表 ///CircleList.h #pragma once #include <stdio. ...

  3. 解决HTML外部引用CSS文件不生效问题

    作为一个前端小白,鼓捣了几天前端..今天突然发现我深信不疑的东西,竟然出现了问题..就比如我在css目录下面写了一个css样式文档:style.css.这时里面只有一句话: body { backgr ...

  4. MPAndroidChart图形联动

    MPAndroidChart图形联动 本篇基于博客MPAndroidChart的K线图上添加均线,两个MPAndroidChart是有联动效果的 原理 获取正在滑动的Chart的触摸事件,将事件同步给 ...

  5. iOS应用启动时间

    转自:iOS 知识小集 如果我们想知道程序启动的时间,则可以在工程的scheme中添加环境变量DYLD_PRINT_STATISTICS,如图1所示.这样在调试时,可以在控制台打印出程序启动过程中各个 ...

  6. Swift Review总结:从 Swift Style 开始

    每个语言都有自己的推荐风格.显然OC与Swift有着不同的风格.当我们开始写Swift,首先要注意的就是按照Swift的风格写,而不是沿用OC的风格. 省略句末的分号 swift推崇简洁的语法.如果一 ...

  7. React Native之ScrollView控件详解

    概述 ScrollView在Android和ios原生开发中都比较常见,是一个 滚动视图控件.在RN开发中,系统也给我们提供了这么一个控件.不过在RN开发中 ,使用ScrollView必须有一个确定的 ...

  8. android PM2.5监控demo开发

    最近看到了这个网站是aqicn.org,是一个监控北京空气状态的网站,截图如下 好了,接下来我们利用这个网站返回的json数据来写一个监控北京空气状况尤其是PM2.5的demo. 1.布局文件如下: ...

  9. (一二八)使用POST上传文件

    简介 上传文件到服务器是一个比较常用的操作,最基本的方式是通过POST上传,文件以二进制形式,作为一个参数传递,但是这个POST的结构相当复杂,且必须完全符合HTTP标准. 文件上传的POST格式 该 ...

  10. Struts 2 之拦截器

    拦截器概述 Struts2拦截器是在访问某个Action或Action的某个方法,字段之前或之后实施拦截,并且Struts2拦截器是可插拔的,拦截器是AOP(Aspect Oriented Progr ...