kafka 创建topic 节点数与副本书和分区数有什么限制关系吗?
答案:1 悬赏:30 手机版
解决时间 2021-08-16 10:28
- 提问者网友:蔚蓝的太阳
- 2021-08-15 09:41
kafka 创建topic 节点数与副本书和分区数有什么限制关系吗?
最佳答案
- 五星知识达人网友:由着我着迷
- 2021-08-15 09:53
一 kafka集群
s202 s203 s204
二 创建副本数为2 分区数为5 topic为test3的topic
kafka-topics.sh --create --zookeeper s202:2181 --replication-factor 2 --partitions 5 --topic test3
三 分区和副本查看的两种方法
1 通过zookeeper命令查看
get /brokers/topics/test3/partitions/1/state
值为 “leader”:203,“isr”:[203,202]
get /brokers/topics/test3/partitions/0/state
值为 “leader”:202,“isr”:[202,204]
get /brokers/topics/test3/partitions/2/state
值为 “leader”:203,“isr”:[203,204]
2 通过log文件查看
[[email protected] /tmp/kafka-logs]$ls
test3-0 test3-3 test3-1
四 命令执行完后集群分区情况
s202: test3-0 | test3-1 | test3-3
s203: test3-1 | test3-2 | test3-3 | test3-4
s204: test3-0 | test3-2 | test3-4
五 分区主备情况
test3-0 leader=202 备=204
test3-4 leader=203 备=204
s202 s203 s204
二 创建副本数为2 分区数为5 topic为test3的topic
kafka-topics.sh --create --zookeeper s202:2181 --replication-factor 2 --partitions 5 --topic test3
三 分区和副本查看的两种方法
1 通过zookeeper命令查看
get /brokers/topics/test3/partitions/1/state
值为 “leader”:203,“isr”:[203,202]
get /brokers/topics/test3/partitions/0/state
值为 “leader”:202,“isr”:[202,204]
get /brokers/topics/test3/partitions/2/state
值为 “leader”:203,“isr”:[203,204]
2 通过log文件查看
[[email protected] /tmp/kafka-logs]$ls
test3-0 test3-3 test3-1
四 命令执行完后集群分区情况
s202: test3-0 | test3-1 | test3-3
s203: test3-1 | test3-2 | test3-3 | test3-4
s204: test3-0 | test3-2 | test3-4
五 分区主备情况
test3-0 leader=202 备=204
test3-4 leader=203 备=204
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯