the-other-tim-brown commented on code in PR #13171:
URL: https://github.com/apache/hudi/pull/13171#discussion_r2053141122
##########
hudi-common/src/main/java/org/apache/hudi/common/util/SerializationUtils.java:
##########
@@ -126,6 +127,8 @@ public Kryo newKryo() {
// Register serializers
kryo.register(Utf8.class, new AvroUtf8Serializer());
kryo.register(GenericData.Fixed.class, new GenericAvroSerializer<>());
+ kryo.register(IndexedRecord.class, new GenericAvroSerializer<>());
+ kryo.register(GenericData.Record.class, new GenericAvroSerializer<>());
Review Comment:
Actually the common class just registers classes with Kryo but does not
register any custom implementations so it does not work
--
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]