Kafka - Security
Given this Kafka producer config snippet:
What is the main security feature enabled here?
props.put("security.protocol", "SASL_SSL");
props.put("sasl.mechanism", "PLAIN");
props.put("ssl.truststore.location", "/path/to/truststore.jks");What is the main security feature enabled here?
