spring|spring boot 集成Kafka配置文件详解

1 前缀 首先配置的前缀是固定的,为

spring: kafka: consumer:

2配置
2.1 group-id
group-id: Data

2.1.1 spring boot源码的配置文件是这么说的

Unique string that identifies the consumer group to which this consumer belongs.

2.1.2Kafka 自身设计的解释
消费组,消费组均衡地给消费者分配分区,每个分区只由消费组中一个消费者消费

2.2auto-offset-reset
2.2.1 spring boot源码的配置文件是这么说的
What to do when there is no initial offset in Kafka or if the current offset no longer exists on the server.
如果没有偏移量,应该怎么办

2.2.2Kafka 自身设计的解释
如果该消费者的偏移量不存在, 设置偏移量为最新的偏移量
【spring|spring boot 集成Kafka配置文件详解】

    推荐阅读