如何为ConfluentControl center配置单个代理

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

出于开发目的,我想为我的单个代理kafka设置控制中心,但由于异常而失败。我把配置和控制中心输出日志详细信息放在这里。有人能帮忙建议一下吗?

[2020-04-04 11:27:55,883] ERROR [main] 3 brokers are required but only found 1. Check the topic replication settings in the properties file or add more brokers to your cluster (io.confluent.controlcenter.KafkaHelper)
7fyelxc5

7fyelxc51#

您需要告诉confluent control center对其主题使用单个代理。默认情况下,它配置为需要三个,以防止可能的数据丢失
在你的 control-center-production.properties 设置:

confluent.controlcenter.internal.topics.replication=1
confluent.controlcenter.command.topic.replication=1
confluent.monitoring.interceptor.topic.replication=1
confluent.metrics.topic.replication=1

相关问题