-
When I restart the strimzi entity operator, it starts up and within a few minutes, I see this message repeated: 2023-11-06 14:51:30,68589 WARN [vertx-blocked-thread-checker] BlockedThreadChecker: - Thread Thread[blocking-startup-ops-0,5,main] has been blocked for 60580 ms, time limit is 60000 ms I suspect this has something to do with the Kafka Streams store of topic information. I suspect that the stream is corrupted on my cluster. This cluster is in production, and I'd love to reinitialize whatever's broken. How can I fix the entity operator? Thanks, Steve Startup log: Preparing trust store certificates for internal communication
2023-11-06 14:50:25,12793 INFO [vert.x-eventloop-thread-0] Session:200 - Starting |
Beta Was this translation helpful? Give feedback.
Replies: 6 comments 15 replies
-
Can you please format the log to make it readable? |
Beta Was this translation helpful? Give feedback.
-
log.txt |
Beta Was this translation helpful? Give feedback.
-
If it helps, I had this problem on a dev cluster. I changed the number of partitions on the __strimzi_store_topic topic, and shortly after the entity operator had this same problem. I had to rebuild the entire kafka cluster to fix the entity operator. I wasn't able to figure out another way to solve the problem. Since this cluster is production, that solution won't work. I did not try to reproduce the failure, so I don't know if it was the cause, or just a coincidence. Also, I asked the team, and they did not change the topic partition count for the production cluster. |
Beta Was this translation helpful? Give feedback.
-
I also checked the user operator, and it's running fine. It's just the topic operator that's not working. FYI: I'm running 0.30. I'm working on upgrading, to see if that helps. |
Beta Was this translation helpful? Give feedback.
-
It looks like the TO is waiting for the Kafka Streams state-store to become ready (state=RUNNING), and this never happens. 2023-11-07 03:13:39,43741 INFO [kafka-admin-client-thread | adminclient-2] KafkaStreamsTopicStoreService:97 - Creating Kafka Streams, store name: topic-store Do you have any error log and/or topic failing the reconciliation with Then, if you are upgrading, consider enabling the new Unidirectional Topic Operator. |
Beta Was this translation helpful? Give feedback.
-
I added this to the kafka cluster definition:
The entity operator pod needed to be deleted, and the new pod, once started, came up. |
Beta Was this translation helpful? Give feedback.
I added this to the kafka cluster definition:
The entity operator pod needed to be deleted, and the new pod, once started, came up.