摘要: 1、KafkaConsumer poll 详解 消息拉起主要入口为:KafkaConsumer#poll方法,其声明如下: public ConsumerRecords<K, V> poll(final Duration timeout) { // @1 return poll(time.timer 阅读全文
posted @ 2020-03-13 22:21 車輪の唄 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 1. 相关配置项 Consumer读取partition中的数据是通过调用发起一个fetch请求来执行的。而从Kafka Consumer来看,它有一个poll方法。但是这个poll方法只是可能会发起fetch请求。原因是:Consumer每次发起fetch请求时,读取到的数据是有限制的,通过配置项 阅读全文
posted @ 2020-03-13 21:10 車輪の唄 阅读(43) 评论(0) 推荐(0) 编辑