我是新手,可以在下面的github存储库中看到一个包含一个使用者的示例,但是有什么想法如何在go lang中为同一主题创建多个使用者?
https://github.com/confluentinc/confluent-kafka-go/tree/master/examples
在confluent-kafka中是否有任何消费者工厂(用于生成N个消费者)可以读取相同的主题(带有分区)?
答案 0 :(得分:0)
在Confluent github存储库中有一个示例:
如果要为同一主题创建多个使用者,则有两种情况:
1。使用不同的组ID创建每个使用者。
c1, err := kafka.NewConsumer(&kafka.ConfigMap{
"bootstrap.servers": broker,
"group.id": group1,
"session.timeout.ms": 6000,
"default.topic.config": kafka.ConfigMap{"auto.offset.reset": "earliest"}})
c2, err := kafka.NewConsumer(&kafka.ConfigMap{
"bootstrap.servers": broker,
"group.id": group2,
"session.timeout.ms": 6000,
"default.topic.config": kafka.ConfigMap{"auto.offset.reset": "earliest"}})