Zookeeper笔记 -- 配置文件详解

配置文件:~/conf/zoo.cfg

# The number of milliseconds of each tick  心跳停止的最长时间2s
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=/home/bigdata/app/zookeeper/data

# the port at which the clients will connect     
clientPort=2181

# 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
# autopurge.snapRetainCount=500

#2888端口:各个zookeeper之间进行数据的同步,3888端口:各个zookeeper之间进行选主。选一个为主,其他为从(单机模式只需要配一台)
#server后面的数字和myid保持一致就行
server.0=hadoop2:2888:3888

zoo.cfg中参数含义详解

1.tickTime=2000:通信心跳数,Zookeeper服务器与客户端心跳时间,单位毫秒Zookeeper使用的基本时间,服务器之间或客户端与服务器之间维持心跳的时间间隔,也就是每个tickTime时间就会发送一个心跳,时间单位为毫秒。
它用于心跳机制,并且设置最小的session超时时间为两倍心跳时间。(session的最小超时时间是2*tickTime)

2.initLimit=10:LF初始通信时限
集群中的Fo1lower跟随者服务器与Leader领导者服务器之间初始连接时能容忍的最多心跳数(tickTime的数量),用它来限定集群中的Zookeeper服务器连接到Leader的时限。

3.syncLimit=5:LF同步通信时限
集群中Leader与Fo1lower之间的最大响应时间单位,假如响应超过syncLimit*tickTime,Leader认为Fo11wer死掉,从服务器列表中删除Fo1lwer。

4.dataDir:数据文件目录+数据持久化路径
主要用于保存Zookeeper中的数据。

5.clientPort=2181:客户端连接端口
监听客户端连接的端口。

zk的log日志

zk的log日志,可以在 ~/bin/zkEnv.sh 里修改,默认在启动路径下的logs里

if [ "x${ZOO_LOG_DIR}" = "x" ]
then
    ZOO_LOG_DIR="."
fi
原文地址:https://www.cnblogs.com/junzifeng/p/11933428.html