\uu consumer\u offsets主题在描述zookeeper和bootstrap服务器时显示不同的配置

jmo0nnb3  于 2021-06-04  发布在  Kafka
关注(0)|答案(1)|浏览(367)

Kafka2.4.0版我正在使用kafka-topics.sh脚本来描述带有以下两个选项的消费者主题
--引导服务器
--zookeeper(已弃用)
它们都显示了不同的复制因子和主题的配置。。
有谁能帮助我们理解为什么会有这种行为。非常感谢你的帮助。
使用--bootstrap服务器时

./kafka-topics.sh --bootstrap-server kafka-broker:9092 --describe --topic __consumer_offsets

Topic: __consumer_offsets       PartitionCount: 50      ReplicationFactor: 3    Configs: compression.type=producer,min.insync.replicas=1,cleanup.policy=compact,segment.bytes=104857600,retention.ms=60000,message.format.version=0.10.2-IV0,file.delete.delay.ms=30000,unclean.leader.election.enable=true,retention.bytes=132070253,delete.retention.ms=30000,segment.ms=3600000

使用--zookeeper时

./kafka-topics.sh --zookeeper zookeeper-host:2181/asrkafka --describe --topic __consumer_offsets

Topic: __consumer_offsets       PartitionCount: 50      ReplicationFactor: 3    Configs: compression.type=producer,cleanup.policy=compact,segment.bytes=104857600
kmpatx3s

kmpatx3s1#

non-zookeeper选项使用adminclient api,该api提取存储在代理设置中而不是仅存储在zookeeper中的其他主题元数据。

相关问题