-
Notifications
You must be signed in to change notification settings - Fork 440
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
[RdKafka] Enable serializers to serialize message keys #254
[RdKafka] Enable serializers to serialize message keys #254
Conversation
Wouldn't it better to add the key dedicated methods to the serializer. Or to introduce key serializer interfaces? |
Currently the `RdKafkaProducer` is serializing just the message, which I guess us fine for JSON serialization. But when you want to use an AvroSerializer that integrates with the Confluent Platform, it is possible to use complex types as keys as well, which in turn means that keys need to be serialized, too. This change leverages the mutability of the Message by shifting the `getKey` method call after the call to the Serializer.
90163db
to
f45a646
Compare
I would say this is out of question since you'd have to change the stable interface of the
That would be a better solution but also way more intrusive (more changes required). I guess I could add the Suggestion: Merge this simple & easy to test change now, and implement feature of @makasim What do you think? |
Do you have plans to work on a better solution ? |
@tPl0ch Could you please share some links on the matter? |
What is the key, What role it plays and so on? |
The key of a Kafka message plays in important role deciding which partition of a topic a message is assigned to (if multiple are available). See this document for more information on partitioning on Kafka topics. In summary, Kafka only gives ordering guarantees per topic partition. So in order to guarantee order of messages you need to mark related messages (i.e. In our case keys could also be Avro serialized complex types (imagine using serialized With
Yes, I would provide a PR this evening prototyping the solution with an additional Also for future major versions of this library the decision to have mutable message implementations should IMO be revisited. |
[RdKafka] Enable serializers to serialize message keys
Currently the
RdKafkaProducer
is serializing just the message, which I guess us fine for JSON serialization.But when you want to use an AvroSerializer that integrates with the Confluent Platform, it is possible to use complex types as keys as well, which in turn means that keys need to be serialized, too.
This change leverages the mutability of the Message by shifting the
getKey
method call after the call to the Serializer.