Kafka zookeeper配置说明

1、dataDir、dataLogDir

# the directory where the snapshot is stored

# data路径,这个路径要事先创建,zookeeper的持久化都存储在这两个目录里

dataDir=/tas100/tas100i/kafka/zookeeper

dataLogDir=/tas100/tas100i/kafka/log/zookeeper

2、clientPort

## the port at which the clients will connect

# 客户端端口 默认2181

clientPort=2181

3、maxClientCnxns

# disable the per-ip limit on the number of connections since this is a non-production config

#最大链接数,0表示不限制,默认为0

maxClientCnxns=100

4、tickTime

#时间定量

tickTime=2000

5、syncLimit

syncLimit=5

#表示leader于flower的心跳时间是5个tickTime

6、myid

#去dataDir中,放置一个myid的文件,这个文件就一个数字,标志zookeeper服务

你可能感兴趣的:(Kafka zookeeper配置说明)