how can doris routine load with kafka sasl_ssl authentication work? #7861
Unanswered
liuxiahuiyi
asked this question in
Q&A
Replies: 3 comments
-
The doris version is 0.15.0 |
Beta Was this translation helpful? Give feedback.
0 replies
-
It has been supported in #7251, and will be available in Doris v1.0(coming soon) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I create a doris routine load, but the kafka source requires sasl_ssl authentication. Then I add config in routine load like
FROM KAFKA (
"kafka_broker_list" = "",
"kafka_topic" = "",
"property.kafka_default_offset" = "OFFSET_END",
"property.security.protocol" = "SASL_SSL",
"property.sasl.mechanism" = "SCRAM-SHA-512",
"property.sasl.username" = "",
"property.sasl.password" = "",
"property.ssl.ca.location" = "FILE:ca_dev.pem"
)
But the routine load job can not authenticate the kafka, anything else I should add?
Beta Was this translation helpful? Give feedback.
All reactions