-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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 configuration reported as unknown config #27904
Comments
/cc @alesj, @cescoffier, @ozangunalp |
The |
I would add that these warnings are totally normal. If you write a serializer/deserializer/partitioner/interceptor.... anything that receives a config will display these warnings. We can clean up the configuration with what we know is unrelated, but imagine that your thing requires the |
Fixes quarkusio#27904 (cherry picked from commit 57f18eb)
Describe the bug
I have configured a property for a kafka incoming topic which quarkus report as unknown:
mp.messaging.incoming.topic-test1-in.pause-if-no-requests=false
The documentation has this propertties available to use but I get a warning on startup:
2022-09-13 17:34:03,125 WARN [org.apa.kaf.cli.con.ConsumerConfig] (main) The configuration 'pause-if-no-requests' was supplied but isn't a known config.
In DEV mode, sometimes, it also issues a warning for the property:
mp.messaging.incoming.topic-test1-in.group.id=my-consumer-group
The warning is issues on the AdminClientConfig class:
2022-09-13 17:38:29,082 WARN [org.apa.kaf.cli.adm.AdminClientConfig] (executor-thread-0) The configuration 'group.id' was supplied but isn't a known config
Expected behavior
No warning issued if these property is present
Actual behavior
No response
How to Reproduce?
No response
Output of
uname -a
orver
No response
Output of
java -version
No response
GraalVM version (if different from Java)
No response
Quarkus version or git rev
2.12.1.Final
Build tool (ie. output of
mvnw --version
orgradlew --version
)No response
Additional information
No response
The text was updated successfully, but these errors were encountered: