[ https://issues.apache.org/jira/browse/KAFKA-6793?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16870899#comment-16870899 ]
Patrik Kleindl edited comment on KAFKA-6793 at 6/24/19 8:58 PM: ---------------------------------------------------------------- Just to bump this, as discussed in [https://confluentcommunity.slack.com/archives/C48AHTCUQ/p1561063563237400] this (and other related warnings) still happen in 2.2.1 The warning happens in Kafka Streams on several occasions: * admin.retries because this is passed from streams itself to the admin client * when trying to override a property for e.g. main.consumer.max.poll.records * when trying to pass a property through the application properties to the RocksDBConfigSetter (they are added automatically there, but also produce warnings) The first two pop up because the prefixes are stripped from the properties when they are used but not handled in the comparison. And the code does not filter out properties based on the prefix if they are not even aimed at the receiver (e.g. admin.retries should not affect the producer). The third would qualify for the "passthrough" approach mentioned in KAFKA-7509. was (Author: pkleindl): Just to bump this, as discussed in [https://confluentcommunity.slack.com/archives/C48AHTCUQ/p1561063563237400] this (and other related warnings) still happen in 2.2.1 > Unnecessary warning log message > -------------------------------- > > Key: KAFKA-6793 > URL: https://issues.apache.org/jira/browse/KAFKA-6793 > Project: Kafka > Issue Type: Bug > Components: streams > Affects Versions: 1.1.0 > Reporter: Anna O > Priority: Minor > > When upgraded KafkaStreams from 0.11.0.2 to 1.1.0 the following warning log > started to appear: > level: WARN > logger: org.apache.kafka.clients.consumer.ConsumerConfig > message: The configuration 'admin.retries' was supplied but isn't a known > config. > The config is not explicitly supplied to the streams. -- This message was sent by Atlassian JIRA (v7.6.3#76005)