Updated Schema Registry Tutorial with fixes to sasl property configs section (#87)

This commit is contained in:
Rajasa (RJ) 2019-12-17 14:03:39 -08:00 коммит произвёл Arthur Erlendsson
Родитель 82719831f4
Коммит 40c34e96dd
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -48,9 +48,9 @@ props.put(ProducerConfig.BOOTSTRAP_SERVERS_CONFIG, "mynamespace.servicebus.windo
props.put(AbstractKafkaAvroSerDeConfig.SCHEMA_REGISTRY_URL_CONFIG, "http://<YOUR.SCHEMA.REGISTRY.IP.ADDRESS>:8081");
//Add these configs
props.put("security.protocol", "SASL_SSL")
props.put("sasl.mechanism","PLAIN")
props.put("sasl.jaas.config", "org.apache.kafka.common.security.plain.PlainLoginModule required username=\"$ConnectionString\" password=\"Endpoint=sb://mynamespace.servicebus.windows.net/;SharedAccessKeyName=XXXXXX;SharedAccessKey=XXXXXX\");
props.put("security.protocol", "SASL_SSL");
props.put("sasl.mechanism","PLAIN");
props.put("sasl.jaas.config", "org.apache.kafka.common.security.plain.PlainLoginModule required username=\"$ConnectionString\" password=\"Endpoint=sb://mynamespace.servicebus.windows.net/;SharedAccessKeyName=XXXXXX;SharedAccessKey=XXXXXX\";");
```
## Send and receive