跳到主要内容

KafkaBindingRebalanceListener

DeepSeek V3 中英对照 KafkaBindingRebalanceListener

应用程序可能希望在分区最初分配时,将主题/分区定位到任意偏移量,或在消费者上执行其他操作。从版本 2.1 开始,如果在应用程序上下文中提供一个单独的 KafkaBindingRebalanceListener Bean,它将被自动注入到所有 Kafka 消费者绑定中。

public interface KafkaBindingRebalanceListener {

/**
* Invoked by the container before any pending offsets are committed.
* @param bindingName the name of the binding.
* @param consumer the consumer.
* @param partitions the partitions.
*/
default void onPartitionsRevokedBeforeCommit(String bindingName, Consumer<?, ?> consumer,
Collection<TopicPartition> partitions) {

}

/**
* Invoked by the container after any pending offsets are committed.
* @param bindingName the name of the binding.
* @param consumer the consumer.
* @param partitions the partitions.
*/
default void onPartitionsRevokedAfterCommit(String bindingName, Consumer<?, ?> consumer, Collection<TopicPartition> partitions) {

}

/**
* Invoked when partitions are initially assigned or after a rebalance.
* Applications might only want to perform seek operations on an initial assignment.
* @param bindingName the name of the binding.
* @param consumer the consumer.
* @param partitions the partitions.
* @param initial true if this is the initial assignment.
*/
default void onPartitionsAssigned(String bindingName, Consumer<?, ?> consumer, Collection<TopicPartition> partitions,
boolean initial) {

}

}
java

当您提供一个重新平衡监听器时,不能将 resetOffsets 消费者属性设置为 true