Kafka - Security
Given this Kafka client configuration snippet:
What will happen when the client tries to connect?
props.put("security.protocol", "SASL_SSL");
props.put("sasl.mechanism", "SCRAM-SHA-256");
props.put("sasl.jaas.config", "org.apache.kafka.common.security.scram.ScramLoginModule required username=\"user1\" password=\"pass1\";");What will happen when the client tries to connect?
