SSL与默认KafkaConsumer

huangapple go评论65阅读模式
英文:

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.

huangapple
  • 本文由 发表于 2020年5月29日 14:45:51
  • 转载请务必保留本文链接:https://go.coder-hub.com/62080171.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定