Kafka auto.offset.reset值详解【转载】

 auto.offset.reset值含义解释

earliest 
当各分区下有已提交的offset时,从提交的offset开始消费;无提交的offset时,从头开始消费 
latest 
当各分区下有已提交的offset时,从提交的offset开始消费;无提交的offset时,消费新产生的该分区下的数据 
none 
topic各分区都存在已提交的offset时,从offset后开始消费;只要有一个分区不存在已提交的offset,则抛出异常

 

原地址:https://blog.csdn.net/lishuangzhe7047/article/details/74530417#commentBox

上一篇:关于windows和linux系统更换JDK版本后,修改环境变量也无法生效的原因和解决办法


下一篇:记客户端出现Connect reset问题排查。