Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

kafka-python while loop goes down #2175

Closed
murdercdh opened this issue Nov 30, 2020 · 0 comments
Closed

kafka-python while loop goes down #2175

murdercdh opened this issue Nov 30, 2020 · 0 comments

Comments

@murdercdh
Copy link

In my python code I have:

group = mytest
 try:
       consumer = KafkaConsumer(bootstrap_servers=kafka_multi_hosts, auto_offset_reset='latest', enable_auto_commit=False, group_id=self.topics['customer']['group'], reconnect_backoff_ms=1,consumer_timeout_ms=1000)
       break
 except Exception, err:

while True:
   try:
     for msg in consumer:
        #do the work
     except Exception, err:
        #manage exception ! not possible in 1.3.5

My consumer is trying to read all messages within group = mytest. My kafka cluster is formed by 3 zk and 3 kafka nodes.

kubectl get pods -n kafka
NAME      READY     STATUS    RESTARTS   AGE
kafka-0   1/1       Running   3          7m
kafka-1   1/1       Running   0          4m
kafka-2   1/1       Running   0          3m
zk-0      1/1       Running   0          49m
zk-1      1/1       Running   0          7m
zk-2      1/1       Running   0          1h

I have the same issue when I using the similar code. My sentry log alert me every day~~~.
image

Originally posted by @murdercdh in #1354 (comment)

@dpkp dpkp closed this as not planned Won't fix, can't repro, duplicate, stale Mar 12, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants