Replies: 2 comments 4 replies
-
Configuration ThreadDump
|
Beta Was this translation helpful? Give feedback.
2 replies
-
Looks like the heartbeats are not enabled; the threads are stuck here if (!enabled) {
AbstractCoordinator.this.wait();
continue;
} Waiting for something to enable the thread. We don't know kafka-clients internals here; you would be better asking the wider Kafka community. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi
I am using @KafkaListener(Springboot 2.3.6 and kafka-client 2.5.1) to consume the messages from topic with 30 partition (concurrency 30). This particular service is running in k8s cluster.
Here the issue is,
After starting the springboot application, KafkaListener is starting to consume the message from kafka. But 1 or 2 days later KafkaListener is not getting any messages (it is a kind of stuck). When we analysis the threaddump. WE found that heartbeat threads(30) are in blocked state.
Please assist me to solve this issue
Beta Was this translation helpful? Give feedback.
All reactions