We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
master
When ConsumerRecordDeserializer invoke Serde.Deserializer.deserialize, it pass in an empty list of RecordHeader instead of the actual RecordHeaders
var deserResult = keyDeserializer.deserialize(new RecordHeadersImpl(), rec.key().get())
My custom Serde require the record headers to find the encoding schema from our schema registry.
ConsumerRecordDeserializer should pass the record headers to the deserialize function like what it does when deserializing values.
var deserResult = keyDeserializer.deserialize(new RecordHeadersImpl(rec.headers()), rec.key().get())
I reference the master branch code above:
kafka-ui/kafka-ui-api/src/main/java/com/provectus/kafka/ui/serdes/ConsumerRecordDeserializer.java
Line 81 in 83b5a60
Problem should be obvious from the actual source code quoted above.
No response
My custom Serde cannot deserialize record key without information in the record headers.
The text was updated successfully, but these errors were encountered:
Hello there twinprime! 👋
Thank you and congratulations 🎉 for opening your very first issue in this project! 💖
In case you want to claim this issue, please comment down below! We will try to get back to you as soon as we can. 👀
Sorry, something went wrong.
Hi, this repo is not maintained (#4255). Please raise one here: https://github.com/kafbat/kafka-ui
No branches or pull requests
Issue submitter TODO list
master
-labeled docker image and the issue still persists thereDescribe the bug (actual behavior)
When ConsumerRecordDeserializer invoke Serde.Deserializer.deserialize, it pass in an empty list of RecordHeader instead of the actual RecordHeaders
var deserResult = keyDeserializer.deserialize(new RecordHeadersImpl(), rec.key().get())
My custom Serde require the record headers to find the encoding schema from our schema registry.
Expected behavior
ConsumerRecordDeserializer should pass the record headers to the deserialize function like what it does when deserializing values.
var deserResult = keyDeserializer.deserialize(new RecordHeadersImpl(rec.headers()), rec.key().get())
Your installation details
I reference the master branch code above:
kafka-ui/kafka-ui-api/src/main/java/com/provectus/kafka/ui/serdes/ConsumerRecordDeserializer.java
Line 81 in 83b5a60
Steps to reproduce
Problem should be obvious from the actual source code quoted above.
Screenshots
No response
Logs
No response
Additional context
My custom Serde cannot deserialize record key without information in the record headers.
The text was updated successfully, but these errors were encountered: