I m trying to create a consumer but getting error "Failed to create consumer: No provider for SASL mechanism GSSAPI: recompile librdkafka with libsasl2 or openssl support. Current build options: PLAIN SASL_SCRAM OAUTHBEARER". where, in consumer, having this config
config := &kafka.ConfigMap{
"metadata.broker.list": cfg.BrokerHostEndpoint,
"security.protocol": "SASL_PLAINTEXT",
"sasl.kerberos.service.name": "kafka",
"group.id": cfg.ConsumeTopic,
"auto.offset.reset": "earliest",
"go.application.rebalance.enable": true,
"go.events.channel.enable": true,
}