-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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 waiting for ever when Kafka node goes down kafka-python (1.3.3/1.3.4/1.3.5) #1354
Comments
Something is causing your consumer to leave the group:
Can you post debug logs? |
After one node down. Now it is up&running but I still have this problem
|
Looks like you are running kafka-python 1.3.3 . There have been a number of improvements to this logic in more recent releases as well as some large changes in master. Have you tried running the code in master? |
No. I think this is a dup of #1306 |
is : pip install kafka-python enough to use the release you are talking about ? |
to install from master you'll need to clone the git repo and install from there:
(that's from memory, but I think it is correct) |
is there any configuration you can suggest for Kafka (yaml) on K8S @dpkp ? I mean, you have used to verify old bugs are now solved.. |
Anyhow by using the new code suggested by you @dpkp I see the following logs :
Then If I shutdonw one node of Kafka (kafka-0 e.g) it will never goes to other node set in the KafkaConsumer: My KafkaConsumer:
In conclusion I would like to verify that if one node goes down, my Consumer (waiting forever) is able to switch on another server passed in the bootstart_server list in KafkaConsumer as :
|
I am having what seems to be a similar issue. (kafka-python 1.3.5) I have two kafka brokers running and both are in the broker list. If I kill one of them, I get the following:
There are two kafka brokers running, so I would assume it should switch over to the other broker. I also notice something odd - at least to me it looks odd:
It looks like it's saying the meta data changed from an ip address to the dns server name? One other note - if I kill the other broker (with the first one still up) - looks like it properly switches brokers:
|
I think I found part of the issue in my case - I needed to replicate the Now that I've increased the replication, the |
I believe this issue is fixed in 1.4+ . Please reopen and add details if you're able to duplicate the issue on the latest release. |
@dpkp I am using 1.4.2 version. I am still observing same issue. Initially my connection to Kafka broker was up and running. Once I stopped Broker I conitnious kafka.conn error and its keep coming. I can't find from where this is coming. There is no way I can stop using exceptions or connection error: Also when i restart broker, then my python server is like dead meaning all request are being timed out. .Kafka_Connection:Internal Kafka Connection Initiated on 127.0.0.1:9092 ERROR:kafka.conn:Connect attempt to <BrokerConnection node_id=0 host=INCT-Shailendras:9092 [IPv4 ('127.0.1.1', 9092)]> returned error 111. Disconnecting. ERROR:kafka.conn:Connect attempt to <BrokerConnection node_id=0 host=INCT-Shailendras:9092 [IPv4 ('127.0.1.1', 9092)]> returned error 111. Disconnecting. ERROR:kafka.conn:Connect attempt to <BrokerConnection node_id=0 host=INCT-Shailendras:9092 [IPv4 ('127.0.1.1', 9092)]> returned error 111. Disconnecting. ERROR:kafka.conn:Connect attempt to <BrokerConnection node_id=0 host=INCT-Shailendras:9092 [IPv4 ('127.0.1.1', 9092)]> returned error 111. Disconnecting. |
Hello, We are using the version
It fails for the first node in the list but our assuption was even if one node fails it should continue with the next node specified in the list. |
Hi, |
I have the same problem any update??
|
Hi! Did you solve the problem? I have the same problem with |
In my python code I have:
My consumer is trying to read all messages within group = mytest. My kafka cluster is formed by 3 zk and 3 kafka nodes.
What I am observing is that if I restart one node (kafka-0 e.g) then I see that my python consumer is not able anymore to read messages sent in kafka.
Following my error:
Instead if I lunch another consumer (completely identical) but in another group = mytest2 , it is able to read new messages.
Could you please help me?
My kafka has the following parameter:
Can you please help?
(From cli I am able to see these messages)
The text was updated successfully, but these errors were encountered: