英文:
SSL with default KafkaConsumer
问题
默认的 KafkaConsumer
实例是否支持使用 SSL 进行消费?我会认为不支持,但我目前还没有找到关于将使用哪些默认属性的文档。
英文:
Does a default KafkaConsumer
instance use/support SSL for consuming? I would assume not but I could not yet find a documentation which default properties will be used.
答案1
得分: 2
是的,KafkaConsumer 支持 SSL。然而,默认情况下,所有安全设置都设置为 "null"。
您可以在 Kafka 文档的 Consumer Configs 部分找到所有的配置信息。
更准确地说,Kafka Consumer 的 security.protocol
的默认设置是 PLAINTEXT
。只有在您有意将其设置为 SSL
时,它才会启用 SSL 通信。
英文:
Yes, a KafkaConsumer supports SSL. However, by default, all security setting are set to "null".
You will find all configuration in the Consumer Configs section of the Kafka documentation.
To be more precise, the default setting of a Kafka Consumer for security.protocol
is PLAINTEXT
. Only if you set this on purpose to SSL
it will enable SSL communication.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论