Hi As mentioned in the documentation <https://ci.apache.org/projects/flink/flink-docs-release-1.13/docs/dev/serialization/custom_serializers/> I have registered the Protobuf Serializer like below
env.getConfig().registerTypeWithKryoSerializer(SelfDescribingMessageDO.class, ProtobufSerializer.class); It is working but I am seeing INFO logs like below 2021-06-16 06:17:22,235 INFO org.apache.flink.api.java.typeutils.TypeExtractor - class com.vnera.model.protobufs.SelfDescribingMessageDO does not contain a getter for field bitField0_ 2021-06-16 06:17:22,235 INFO org.apache.flink.api.java.typeutils.TypeExtractor - class com.vnera.model.protobufs.SelfDescribingMessageDO does not contain a setter for field bitField0_ Can someone let me know why am I seeing this and how can I get around this? Flink Version 1.13.0