-
I noticed that the Global configuration properties does not include some properties that I see in some guides for configuring Kafka clients with SSL. For example, this guide includes properties like
Does anyone have an explanation for this discrepancy? For context, I'm somewhat new to using Kafka and am adding support for SSL (more specifically would like to enable mTLS) to some software that will be acting as a Kafka client. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
TrustStore and KeyStores are Java KeyStores, specific to the Java client and not something librdkafka supports (being a non-Java client). |
Beta Was this translation helpful? Give feedback.
TrustStore and KeyStores are Java KeyStores, specific to the Java client and not something librdkafka supports (being a non-Java client).
librdkafka relies on the more standard PEM and PKCS#12(PFX) formats.