gpt4 book ai didi

apache-kafka - 某个代理宕机后如何更改主题领导者或删除分区?

转载 作者:行者123 更新时间:2023-12-03 23:10:36 25 4
gpt4 key购买 nike

我们有一个带有 4 个代理的 kafka 集群和一些具有副本因子 1 和 10 分区的主题。
在某一时刻,我们的 4 个服务器中有 2 个带有 kafka 集群 - 失败。
所以现在我们有 2 个具有相同主题的经纪人。
当我 m run command
./kafka_topics.sh --zookeeper localhost:2181 --describe
i
我明白了:

Topic:outcoming-notification-error-topic        PartitionCount:10       ReplicationFactor:1     Configs:
Topic: outcoming-error-topic Partition: 0 Leader: 2 Replicas: 2 Isr: 2
Topic: outcoming-error-topic Partition: 1 Leader: 3 Replicas: 3 Isr: 3
Topic: outcoming-error-topic Partition: 2 Leader: 4 Replicas: 4 Isr: 4
Topic: outcoming-error-topic Partition: 3 Leader: 1 Replicas: 1 Isr: 1
Topic: outcoming-error-topic Partition: 4 Leader: 2 Replicas: 2 Isr: 2
Topic: outcoming-error-topic Partition: 5 Leader: 3 Replicas: 3 Isr: 3
Topic: outcoming-error-topic Partition: 6 Leader: 4 Replicas: 4 Isr: 4
Topic: outcoming-error-topic Partition: 7 Leader: 1 Replicas: 1 Isr: 1
Topic: outcoming-error-topic Partition: 8 Leader: 2 Replicas: 2 Isr: 2
Topic: outcoming-error-topic Partition: 9 Leader: 3 Replicas: 3 Isr: 3

如何删除Leader 2...4?或者我可能需要为这个领导者删除分区,但是如何?

更新..

我们也使用 kafka_exporter 来监控 kafka 与 prometheus。在 kafka_exporter 的日志中出现 2 个代理后,我们收到以下错误:
level=error msg="Cannot get oldest offset of topic outcoming-error-topic partition  10: kafka server: In the middle of a leadership election, there is currently no leader for this partition and hence it is unavailable for writes." source="kafka_exporter.go:296"

最佳答案

你可以使用 Kafka 的 kafka-reassign-partitions.sh要做到这一点。你有两种方式,一种是生成新分配提案 ,另一个是 manually specifying特定分区的领导者。

1 .生成提案
第一种方法,如 kafka docs 上所述,遵循这个逻辑:
1.1 生成建议的分区重新分配配置
首先,您应该创建一个 json 文件,例如链接中提供的文件。让我们为它命名 topics.json .

{
"topics": [{"topic": "foo1"},
{"topic": "foo2"}],
"version":1
}
这将告诉 kafka 您愿意从哪些主题重新分配其分区。在示例中,他希望Kafka 为主题 foo1 提出建议。和 foo2 .
使用该 json,调用该工具并在命令中设置事件代理列表:
kafka-reassign-partitions.sh --zookeeper $ZK_HOSTS 
--topics-to-move-json-file topics.json --broker-list "1,2,3,4,5" --generate
这将输出 Kafka 的建议,您可以将其保存到另一个 .json 文件中。例如:
{
"version":1,
"partitions":[{"topic":"foo1","partition":2,"replicas":[5,6]},
{"topic":"foo1","partition":0,"replicas":[5,6]},
{"topic":"foo2","partition":2,"replicas":[5,6]},
{"topic":"foo2","partition":0,"replicas":[5,6]},
{"topic":"foo1","partition":1,"replicas":[5,6]},
{"topic":"foo2","partition":1,"replicas":[5,6]}]
}
如果您愿意(或认为这是正确的做法,因为该工具并不完美),您可以手动修改某些分配。将json保存到文件中,例如 reassign-example.json ,将在下一步中使用。
1.2. 执行建议的分区重新分配
让我们让 Kafka 执行提案并移动分区。为此,执行:
bin/kafka-reassign-partitions.sh --zookeeper $ZK_HOSTS 
--reassignment-json-file reassign-example.json --execute
这将执行 reassign-example.json 上定义的分区移动文件。

2 .说明书规范
第二种方法相当简单,但您必须手动确定要重新分配的分区。例如,如果您希望主题 XXX 的分区 1 移动到代理 5 和 6,您可以创建一个 json 文件( manual-reassign.json ),例如:
{"version":1,"partitions":[{"topic":"XXX","partition":1,"replicas":[5,6]}]}
它的启动方式与之前的方法相同:
bin/kafka-reassign-partitions.sh --zookeeper $ZK_HOSTS 
--reassignment-json-file manual-reassign.json --execute

关于apache-kafka - 某个代理宕机后如何更改主题领导者或删除分区?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58202261/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com