majialoong commented on PR #21633:
URL: https://github.com/apache/kafka/pull/21633#issuecomment-4025589707
> Testing this PR, I noticed something a little strange. Seems harmless and
probably not introduced by this PR, but if I define a broker config whose name
matches a group config (and it's not a valid broker config), the presence of
the broker config and its value appears in the output of `bin/kafka-configs.sh`.
>
> ```
> % bin/kafka-configs.sh --bootstrap-server localhost:9092 --entity-type
groups --describe
> Dynamic configs for group G1 are:
> share.heartbeat.interval.ms=5003 sensitive=false
synonyms={DYNAMIC_GROUP_CONFIG:share.heartbeat.interval.ms=5003,
STATIC_BROKER_CONFIG:share.heartbeat.interval.ms=5001}
> ```
>
> I defined `share.heartbeat.interval.ms` in `config/server.properties` and
that makes it appear as a bogus static broker config in this output. I can open
a different issue for this. wdyt?
@AndrewJSchofield Thanks for the review. I was able to reproduce this issue
on the `trunk` branch as well, so this appears to be a pre-existing issue.
I defined `consumer.session.timeout.ms=5006` in `server.properties`.
```
bin/kafka-configs.sh --bootstrap-server localhost:9092 --entity-type groups
--describe
Dynamic configs for group my-group are:
consumer.session.timeout.ms=46000 sensitive=false
synonyms={DYNAMIC_GROUP_CONFIG:consumer.session.timeout.ms=46000,
STATIC_BROKER_CONFIG:consumer.session.timeout.ms=5006
```
I think it would make sense to track it in a separate ticket, and I’d be
happy to start looking into it.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]