Hi, Please does Pinot support SASL _SSL with SCRAM...
# getting-started
t
Hi, Please does Pinot support SASL _SSL with SCRAM-SHA-512 mechanism authentication for Kafka brokers connection?
Copy code
security.protocol=SASL_SSL
sasl.mechanism=SCRAM-SHA-512
sasl.jaas.config=org.apache.kafka.common.security.scram.ScramLoginModule required username="XXXXXX" password="XXXXX";
cc: @User to add anything more
c
I think the question is around Kafka AuthN (not transport security). I have seen cases of SASL PLAIN. Not sure about SCRAM
t
@User I confirm that it is supported. Basically, it's not really specific to Pinot, rather to Kafka. Since Pinot is using Kafka consumer version greater than 0.9.0 it worked.
Copy code
"security.protocol": "SASL_SSL",
"sasl.mechanism": "SCRAM-SHA-512",
"sasl.jaas.config": "org.apache.kafka.common.security.scram.ScramLoginModule required username='xxxxxx' password='xxxxxxx';",
c
AWesome ! thanks for confirming