ZooKeeper 客户端的使用
|
1
2
|
cd binzkCli.sh -timeout 5000 -server 27.154.242.214:5091 |
|
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] hZooKeeper -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 123Created /note1 |
-s 表示是顺序节点 -e表示为临时节点
|
1
2
|
[zk: 27.154.242.214:5091(CONNECTED) 11] create/note2 123Created /note2 |
顺序节点
|
1
2
3
4
|
[zk: 27.154.242.214:5091(CONNECTED) 1] create -s /note1/note13 1333Created /note1/note130000000002[zk: 27.154.242.214:5091(CONNECTED) 2] create -s /note1/note13 1333Created /note1/note130000000003 |
查看节点状态
|
1
2
3
4
5
6
7
8
9
10
11
12
|
[zk: 27.154.242.214:5091(CONNECTED) 12] stat /note1cZxid = 0xc0bctime = Sun Aug 21 07:42:06 CST 2016mZxid = 0xc0bmtime = Sun Aug 21 07:42:06 CST 2016pZxid = 0xc0bcversion = 0dataVersion = 0aclVersion = 0ephemeralOwner = 0x0dataLength = 3numChildren = 0 |
|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
[zk: 27.154.242.214:5091(CONNECTED) 13] get /note1123cZxid = 0xc0bctime = Sun Aug 21 07:42:06 CST 2016mZxid = 0xc0bmtime = Sun Aug 21 07:42:06 CST 2016pZxid = 0xc0bcversion = 0dataVersion = 0aclVersion = 0ephemeralOwner = 0x0dataLength = 3numChildren = 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 = 0xc0bctime = Sun Aug 21 07:42:06 CST 2016mZxid = 0xc0bmtime = Sun Aug 21 07:42:06 CST 2016pZxid = 0xc0dcversion = 2dataVersion = 0aclVersion = 0ephemeralOwner = 0x0dataLength = 3numChildren = 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 111cZxid = 0xc0cctime = Sun Aug 21 07:47:28 CST 2016mZxid = 0xc15mtime = Sun Aug 21 09:12:07 CST 2016pZxid = 0xc0ccversion = 0dataVersion = 1aclVersion = 0ephemeralOwner = 0x0dataLength = 3numChildren = 0[zk: 27.154.242.214:5091(CONNECTED) 9] get /note1/note11 111cZxid = 0xc0cctime = Sun Aug 21 07:47:28 CST 2016mZxid = 0xc15mtime = Sun Aug 21 09:12:07 CST 2016pZxid = 0xc0ccversion = 0dataVersion = 1aclVersion = 0ephemeralOwner = 0x0dataLength = 3numChildren = 0 |
删除节点
(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 /note1Node 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 12Created /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]$ lsREADME.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 0x156aa06f8d600012016-08-21 08:54:12,000 [myid:] - INFO [SessionTracker:ZooKeeperServer@355] - Expiring session 0x156aa06f8d60001, timeout of 5000ms exceeded2016-08-21 08:54:12,001 [myid:] - INFO [ProcessThread(sid:0 cport:5091)::PrepRequestProcessor@489] - Processed session termination for sessionid: 0x156aa06f8d600012016-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:343382016-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:343382016-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:343382016-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 /note12016-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 /note1absolute path is /zookeeper/quota/note1/zookeeper_limitsOutput quota for /note1 count=2,bytes=-1Output 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_limitsOutput quota for /note1 count=-1,bytes=-1Output 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] history16 - create /note117 - setquota -n 2 /note1 18 - create /note1 12319 - setquota -n 2 /note1 20 - create /note1/note11 1121 - create /note1/note12 1222 - create /note1/note13 1323 - listquota /note124 - delquota -n /note125 - listquota /note126 - history[zk: 27.154.242.214:5091(CONNECTED) 27] redo 25absolute path is /zookeeper/quota/note1/zookeeper_limitsOutput quota for /note1 count=-1,bytes=-1Output stat for /note1 count=4,bytes=9 |
ZooKeeper 客户端的使用的更多相关文章
- 【分布式】Zookeeper客户端
一.前言 前篇博客分析了Zookeeper的序列化和通信协议,接着继续学习客户端,客户端是开发人员使用Zookeeper最主要的途径,很有必要弄懂客户端是如何与服务端通信的. 二.客户端 2.1 客户 ...
- zookeeper 客户端编程
zookeeper是一个分布式的开源的分布式协调服务,用它可以来现同步服务,配置维护.zookeeper的稳定性也是可以保证的,笔者曾参与过的使用zookeeper的两个应用,一个是用zookeepe ...
- ZooKeeper客户端事件串行化处理
为了提升系统的性能,进一步提高系统的吞吐能力,最近公司很多系统都在进行异步化改造.在异步化改造的过程中,肯定会比以前碰到更多的多线程问题,上周就碰到ZooKeeper客户端异步化过程中的一个死锁问题, ...
- zookeeper客户端操作
ZooKeeper客户端 zkCli.sh 节点的增删改查 在 bin 目录下的 zkCli.sh 就是ZooKeeper客户端 ./zkCli.sh -timeout 5000 -server ...
- zookeeper客户端 zkCli使用及常用命令
上篇(http://www.cnblogs.com/yangzhenlong/p/8270835.html)zk伪集群搭建好后,使用zkCli连接zk服务 切换到zk1/bin 目录,执行zkCli. ...
- Zookeeper客户端Curator基本API
在使用zookeper的时候一般不使用原生的API,Curator,解决了很多Zookeeper客户端非常底层的细节开发工作,包括连接重连.反复注册Watcher和NodeExistsExceptio ...
- Zookeeper客户端Curator的使用,简单高效
Curator是Netflix公司开源的一个Zookeeper客户端,与Zookeeper提供的原生客户端相比,Curator的抽象层次更高,简化了Zookeeper客户端的开发量. 1.引入依赖: ...
- Zookeeper客户端介绍
客户端是开发人员使用Zookeeper的主要的途径,以下内容将对Zookeeper的内部原理进行详细的学习和讲解.ZooKeeper的客户端主要有一下几个核心组件组成: Zookeeper:提供客户端 ...
- ZooKeeper客户端 zkCli.sh 节点的增删改查
zkCli.sh 在 bin 目录下的 zkCli.sh 就是ZooKeeper客户端 ./zkCli.sh -timeout 5000 -server 127.0.0.1:2181 客户端与 ...
- Zookeeper客户端Curator使用详解
Zookeeper客户端Curator使用详解 前提 最近刚好用到了zookeeper,做了一个基于SpringBoot.Curator.Bootstrap写了一个可视化的Web应用: zookeep ...
随机推荐
- Bootstrap3 代码-程序输出
通过 <samp> 标签来标记程序输出的内容. This text is meant to be treated as sample output from a computer prog ...
- Web自动化框架LazyUI使用手册(6)--8种控件对应的class,及可对其进行的操作
概述: 本文详述8种控件对应的class,及可对其进行的操作 回顾: 回顾一下,下文中的工具设计思路部分: http://blog.csdn.net/kaka1121/article/details/ ...
- 理解性能的奥秘——应用程序中慢,SSMS中快(2)——SQL Server如何编译存储过程
本文属于<理解性能的奥秘--应用程序中慢,SSMS中快>系列 接上文:理解性能的奥秘--应用程序中慢,SSMS中快(1)--简介 本文介绍SQL Server如何编译存储过程并使用计划缓存 ...
- CentOS6.7 下安装JDK
第一步:从官网上下载rpm版本的jdk文件. 第二步:安装JDK 执行命令rpm -ivh jdk-8u73-linux-i586.rpm 至此,JDK安装完成,我们来看下JDK的安装目录 ...
- Volley的基本使用
Volley的基本使用 导入jar包 导入成功 源码 GET请求下载地址:http://download.csdn.net/detail/q4878802/9053969 POST请求下载地址:htt ...
- Eclipse中设置VM参数
eclipse.ini -Xms256m //设置堆最小值 -Xmx1024m //设置堆最大值 Eclipse 做JVM 的分析时,需要动态设置JVM的参数来进行各种测试, 可以在下图地方进行设置 ...
- UNIX网络编程——原始套接字SOCK_RAW
实际上,我们常用的网络编程都是在应用层的报文的收发操作,也就是大多数程序员接触到的流式套接字(SOCK_STREAM)和数据包式套接字(SOCK_DGRAM).而这些数据包都是由系统提供的协议栈实现, ...
- Struts2处理流程性需求的一种解决方案
在应用程序设计中,经常出现如下的需求. 查看用户填写的数据,而且数据是分页填写. 看下面这个情况 用户的信息有三页,分别是Form abc. 现在的问题是,后面的逻辑该如何设计. 如果把,FormAB ...
- 简单RPC实现之Netty实现
所谓RPC就是远程方法调用(Remote Process Call ),简单的来说就是通过MQ,TCP,HTTP或者自己写的网络协议来传输我要调用对方的什么接口,对方处理之后再把结果返回给我.就这么 ...
- 头部——MimeHeaders
http协议的请求头部更像一个键值对,例如Content-Length : 123,前面为键后面为值,表示文本长度为123.对于若干个头部在请求对象中被封装成MimeHeaders对象,MimeHea ...