This commit is contained in:
Gordon 2022-05-23 19:56:34 +08:00
parent ce15c26b59
commit b7309cdda8

View File

@ -8,6 +8,7 @@ package kafka
import (
"context"
"fmt"
"github.com/Shopify/sarama"
)
@ -28,6 +29,7 @@ func NewMConsumerGroup(consumerConfig *MConsumerGroupConfig, topics, addr []stri
config.Version = consumerConfig.KafkaVersion
config.Consumer.Offsets.Initial = consumerConfig.OffsetsInitial
config.Consumer.Return.Errors = consumerConfig.IsReturnErr
fmt.Println("init address is ", addr, "topics is ", topics)
client, err := sarama.NewClient(addr, config)
if err != nil {
panic(err.Error())