[
https://issues.apache.org/jira/browse/FLINK-13703?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17608063#comment-17608063
]
Andrei Leib commented on FLINK-13703:
-------------------------------------
Just hit this issue as well when setting
{code:java}
avroOptionalGetters := true {code}
in build.sbt
Looks like this is where it might be:
{code:java}
https://github.com/apache/flink/blob/b5cd9f34ab73fa69a3db5a09908c1aa954ed0597/flink-core/src/main/java/org/apache/flink/api/java/typeutils/TypeExtractor.java#L2010-L2012{code}
Will have a closer look when time permits.
> AvroTypeInfo requires objects to be strict POJOs (mutable, with setters)
> ------------------------------------------------------------------------
>
> Key: FLINK-13703
> URL: https://issues.apache.org/jira/browse/FLINK-13703
> Project: Flink
> Issue Type: Improvement
> Components: Formats (JSON, Avro, Parquet, ORC, SequenceFile)
> Reporter: Alexander Fedulov
> Priority: Minor
>
> There exists an option to generate Avro sources which would represent
> immutable objects (`createSetters` option set to false)
> [\[1\]|https://github.com/commercehub-oss/gradle-avro-plugin] ,
> [\[2\]|https://avro.apache.org/docs/current/api/java/org/apache/avro/mojo/AbstractAvroMojo.html].
> Those objects still have full arguments constructors and are being correctly
> dealt with by Avro.
> `AvroTypeInfo` in Flink performs a check to verify if a Class complies to
> the strict POJO requirements (including setters) and throws an
> IllegalStateException("Expecting type to be a PojoTypeInfo") otherwise. Can
> this check be relaxed to provide better immutability support?
> +Steps to reproduce:+
> 1) Generate Avro sources from schema using `createSetters` option.
> 2) Use generated class in
> `ConfluentRegistryAvroDeserializationSchema.forSpecific(GeneratedClass.class,
> schemaRegistryUrl)`
--
This message was sent by Atlassian Jira
(v8.20.10#820010)