zookerper总结

Posted webdev8888

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了zookerper总结相关的知识,希望对你有一定的参考价值。

安装

解压zookeeper-3.4.13.tar.gz ,配置环境变量
技术分享图片

配置

技术分享图片

conf/zoo.cfg配置:

# 时间单元,其他的时间都是以此为单元
tickTime=2000
# The number of ticks that the initial 
# synchronization phase can take
initLimit=10
# The number of ticks that can pass between 
# sending a request and getting an acknowledgement
syncLimit=5
# the directory where the snapshot is stored.
# do not use /tmp for storage, /tmp here is just 
# example sakes.
dataDir=/root/javaApp/zookeeper-3.4.13/dataDir
dataLogDir=/root/javaApp/zookeeper-3.4.13/dataLogDir
# the port at which the clients will connect
clientPort=2181
# the maximum number of client connections.
# increase this if you need to handle more clients
#maxClientCnxns=60
#
# Be sure to read the maintenance section of the 
# administrator guide before turning on autopurge.
#
# http://zookeeper.apache.org/doc/current/zookeeperAdmin.html#sc_maintenance
#
# The number of snapshots to retain in dataDir
#autopurge.snapRetainCount=3
# Purge task interval in hours
# Set to "0" to disable auto purge feature
#autopurge.purgeInterval=1

开启 ./zkServer.sh

打开命令行 ./zkCli.sh

cZxid = 0x0    节点id
ctime = Thu Jan 01 08:00:00 CST 1970  节点创建时间
mZxid = 0x0      节点修改的id
mtime = Thu Jan 01 08:00:00 CST 1970节点修改时间
pZxid = 0x0            子节点id
cversion = -1        子节点版本
dataVersion = 0   此节点数据版本
aclVersion = 0    权限的版本
ephemeralOwner = 0x0    是0x0是永久节点,不是0x0就是临时节点
dataLength = 0     数据长度
numChildren = 1   子节点数量

技术分享图片

技术分享图片

以上是关于zookerper总结的主要内容,如果未能解决你的问题,请参考以下文章

BootStrap有用代码片段(持续总结)

BootStrap实用代码片段(持续总结)

回归 | js实用代码片段的封装与总结(持续更新中...)

查看发票组代码后的总结和有感

VsCode 代码片段-提升研发效率

Python学习总结