[转]kafka要等一段时间才能消费到数据
kafka要等一段时间才能消费到数据
为什么用python写的kafka客户端脚本,程序一运行就能生产数据,而要等一段时间才能消费到数据(topic里面有数据)。(pykafka和confluentKafka都一样)
只有极少的概率立刻可以消费到数据,大多数都要等个几分钟,很影响测试效率。
- 自己封装的一个给予confluentKafka的consumer对象
- 调用,topic里面是有内容的等一段时间也是可以消费到数据的
阅读 4.8k
赞 1踩
收藏关注 6 更新于 2018-06-19
谷雨
- 1
- 新手请关照
你在实例化consumer对象的时候加这样两个参数session_timeout_ms=6000,heartbeat_interval_ms=2000
consumer = KafkaConsumer(self.kafkatopic, group_id = self.groupid, bootstrap_servers = ‘{kafka_host}:{kafka_port}‘.format( kafka_host=self.kafkaHost, kafka_port=self.kafkaPort ), session_timeout_ms=6000, heartbeat_interval_ms=2000)
官网里有参数的解释https://kafka-python.readthed...
主要是这句话:“ If no heartbeats are received by the broker before the expiration of this session timeout, then the broker will remove this consumer from the group and initiate a rebalance.”
另外本机的session_timeout_ms默认值我的是30s,不是官网里说的10s!
赞
2018-06-19
- 阳光筱帅:
更改了参数还是会出现这样的问题