isandeep41 commented on issue #8914: URL: https://github.com/apache/druid/issues/8914#issuecomment-884699310
Druid already supports `SASL_SSL` related parameters. One has to tweak this [Kafka Emitter](https://druid.apache.org/docs/latest/development/extensions-contrib/kafka-emitter.html) config parameter: `druid.emitter.kafka.producer.config` For example: ```sh druid.emitter.kafka.producer.config={"request.timeout.ms": {{ timeout_ms }}, "batch.size": {{ batch_size }}, "sasl.mechanism": "PLAIN", "security.protocol": "SASL_PLAINTEXT", "sasl.jaas.config": "org.apache.kafka.common.security.plain.PlainLoginModule required username=\\"{{ username }}\\" password=\\"{{ password }}\\";"} ``` Tested with Druid : 0.20.2 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
