在一个有3个经纪人的kafka集群中,我有一个Kafka主题,它以某种方式从3个ISR变为1个ISR。我将最小ISR从2更改为1以使其起作用。大概其他经纪人正在尝试复制领导者的话题,我如何监视他们的进度?
答案 0 :(得分:1)
实际上,您可以监视这些指标以查看复制延迟:
kafka.server:type=FetcherLagMetrics,name=ConsumerLag,clientId=([-.\w]+),topic=([-.\w]+),partition=([0-9]+)
Lag in number of messages per follower replica. This is useful to know if the replica is slow or has stopped replicating from the leader.
如https://kafka.apache.org/documentation/
中所述Yannick