Detailed explanation of zookeeper configuration

tickTime:  基本事件单元,以毫秒为单位。
            Zookeeper 服务器之间或客户端与服务器之间维持心跳的时间间隔,也就是每隔 tickTime时间就会发送一个心跳。
            
dataDir:    存储内存中数据库快照的位置,即 Zookeeper 保存数据的目录,默认情况下,Zookeeper 将写数据的日志文件也保存在这个目录里。

clientPort: 这个端口就是客户端连接 Zookeeper 服务器的端口,Zookeeper 会监听这个端口,接受客户端的访问请求。

initLimit:    这个配置项是用来配置 Zookeeper 接受客户端初始化连接时最长能忍受多少个心跳时间间隔数,
            当已经超过 10 个心跳的时间(也就是 tickTime)长度后 Zookeeper 服务器还没有收到客户端的返回信息,
            那么表明这个客户端连接失败。总的时间长度就是 10*2000=20 秒。

syncLimit:    这个配置项标识 Leader 与 Follower 之间发送消息,请求和应答时间长度,
            最长不能超过多少个 tickTime 的时间长度,总的时间长度就是 5*2000=10 秒

server.num = ipAddress:port1:port2
            num         表示这个是第几号服务器,
            ipAddress   是这个服务器的 ip 地址;
            port1       表示的是这个服务器与集群中的 Leader 服务器交换信息的端口;
            port2       表示的是万一集群中的 Leader 服务器挂了,需要一个端口来重新进行选举,选出一个新的 Leader

Cluster configuration example:

# The number of milliseconds of each tick
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=/tmp/zookeeper
# 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

#集群配置
server.0=192.168.1.101:2888:3888
server.1=192.168.1.102:2888:3888
server.2=192.168.1.103:2888:3888

 

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=325942746&siteId=291194637