-
Hi. While this might be a continuation of my own adventure here: #6111 (6111) - I didn't want to pollute that discussion with something new. Now deployed on GKE Standard (1.21.5-gke.1302) everything is "running" and appears to work:
However all the kafka pods are generating a constant stream of the the follow logs:
If the kafka nodes weren't able to connect to zookeeper, how could I have able to create and interact with topics? I've not changed anything to what I tried to deploy to GKE Autopilot in the previous discussion (6111) and I did not have this issue on that cluster. At least on this GKE Standard cluster everything got deployed and is running. The zookeeper logs look ok, but the kafka nodes apparently are having some issue in regards connecting to zookeeper.. To recap my config:
Resulted in:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
This:
has nothing to do with connections to ZooKeeper. It suggests something is trying to connect to the port 9091 and failing the TLS handshake. The port 9091 is used internally for replication and communication between operator and Kafka. So it could be one of the operators, other Kafka broker or something else what for some reason tries to talk with 9091. I guess finding out what has the IP address |
Beta Was this translation helpful? Give feedback.
This:
has nothing to do with connections to ZooKeeper. It suggests something is trying to connect to the port 9091 and failing the TLS handshake. The port 9091 is used internally for replication and communication between operator and Kafka. So it could be one of the operators, other Kafka broker or something else what for some reason tries to talk with 9091. I guess finding out what has the IP address
10.36.2.8
might tell you more about w…