-
Notifications
You must be signed in to change notification settings - Fork 876
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
Is connections.max.idle.ms a Consumer Configuration? #1544
Comments
they are incorrect in that they imply the java client config applies to all clients, which is not the case. thanks. |
Aha, I see. Would you consider a pull request to include this in this .NET Client if we figure out how? :) |
why do you need this? note that on the broker there is |
My usecase is this, let's imagine that my Kafka broker lives on premises. I have my broker However a third-party client is consuming from Azure which the firewall idle timeout is about 4 minutes. If he is unable to configure it from the client-side our connection will keep a 45 minute idle timeout. So my reasoning is this, as the Kafka Broker "hoster" we can never be sure of what the client's firewall policies are and we need them to be able to configure this on their end, because otherwise we would have to set an extremely low value for What do you think? |
interesting point. related: confluentinc/librdkafka#3109 can I suggest opening an issue on librdkafka (it would be a librdkafka change), and let's see what @edenhill thinks about it. |
|
thanks @edenhill ! |
According to the Confluent Consumer Configuration Docs,
connections.max.idle.ms
should be available as a consumer configuration.However it looks like this is not configurable on the Consumer Configuration side in this library? To be honest it doesn't look like librdkafka exposes this as well, so I'm wondering if the Confluent Consumer Configuration Doc is correct.
The text was updated successfully, but these errors were encountered: