-
|
I have a Strimzi cluster using Kafka 3.8 and this is the broker listener configuration: listeners:
- name: scram
authentication:
type: scram-sha-512
port: 9096
type: loadbalancer
tls: trueAll of our clients specify their given client configuration equivalent of the following to connect to these brokers: Basically protocol, mechanism and username/password. I'm trying to get a Flink jobManager and taskManager to connect using the same parameters: I'm pretty sure the Flink jobManager is authenticating, or at least I can see in the logs that it sees the topic I'm trying to connect to: When it spawns a taskManager however, I see the following in the broker logs and the client fails: I realize that this is likely a Flink problem and not a Strimzi problem per se. It's been suggested to me by a Flink maintainers that I need to specify these parameters: I have two questions:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 16 replies
-
|
I have no Flink experience and not much Python Kafka experience either, but my take ...
So I think the advice you got from Flink is valid and you should try to follow it. |
Beta Was this translation helpful? Give feedback.
This turned out to be an issue in Flink where I had two connectors configured, but only one of them with authentication credentials. My original connector was working properly the whole time. After setting authentication on the second connector I'm no longer getting SSL errors. @scholzj thank you so much for your guidance on this. I'll mark this as the answer.