Replies: 1 comment 3 replies
-
There was some similar issue / discussion somewhere else. This might be that the Pod informer is somehow terminated. But to be honest I'm not sure I follow what exactly you did and what is happening in your cluster since the description seems to mix different things such as scaling, deleting pods manually etc. So it is not clear what is actually happening when and how. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have a kafka cluster running in GKE. I have 5 zookeeper and 3 kafka pod. So I was trying to linearly scale out kafka to 5 pod. After I increase one replica (kafka-3),
Kakfa
object detects the changeand a new kafka broker (kafka-3) is added to the cluster.
Now, I want to add another replica (kafka-4) to have 5 kafka pods. After changing the replica count for kafka, I see that the change is reflected correctly
However, strimzipodset for Kafka seems like did not detect any change
I faced this type of unusual situation before as well regarding strimzipodsets. However, restarting the cluster operator magically fixed the issue on that time. But this time it seems like the reconciliation failed permanently and strimzipodset does not increase the pod count for kafka to 5.
According to the logs from operator:
operator cannot verify that
kafka-3
pod is up to date or not. So operator temporarily stopped reconciliation and there is nokafka-4
pod created. However, there is no error in the log ofkafka-3
pod.log from kafka-3 pod:
The spec of
kafka
object after increasing replica count to 5.To clarify a bit more,
kafka-3
andkafka-4
pods were previously deleted manually to check how reclaiming and existing PVC actually works for kafka pod. Sokafka-3
successfully reclaimed the retained PVC and started without any issue.It is unclear why operator is not able to verify if
kafka-3
is up-to-date or not.Beta Was this translation helpful? Give feedback.
All reactions