[
https://issues.apache.org/jira/browse/FLINK-18631?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Flink Jira Bot updated FLINK-18631:
-----------------------------------
Labels: auto-deprioritized-major performance pull-request-available
stale-minor (was: auto-deprioritized-major performance pull-request-available)
I am the [Flink Jira Bot|https://github.com/apache/flink-jira-bot/] and I help
the community manage its development. I see this issues has been marked as
Minor but is unassigned and neither itself nor its Sub-Tasks have been updated
for 180 days. I have gone ahead and marked it "stale-minor". If this ticket is
still Minor, please either assign yourself or give an update. Afterwards,
please remove the label or in 7 days the issue will be deprioritized.
> Serializer for scala sealed trait hierarchies
> ---------------------------------------------
>
> Key: FLINK-18631
> URL: https://issues.apache.org/jira/browse/FLINK-18631
> Project: Flink
> Issue Type: Improvement
> Components: API / Type Serialization System
> Affects Versions: 1.11.0
> Reporter: Roman Grebennikov
> Priority: Minor
> Labels: auto-deprioritized-major, performance,
> pull-request-available, stale-minor
>
> Currently, when flink serialization system spots an ADT-style class hierarchy
> in the Scala code, it falls back to GenericType and kryo serialization, which
> may introduce performance issues. For example, for code:
> {{sealed trait ADT}}
> {{case class Foo(a: String) extends ADT}}
> {{case class Bar(b: Int) extends ADT}}
> {{env.fromCollection(List[ADT](Foo("a"),Bar(1))).collect()}}
>
> It will fall back to Kryo even if there is no problem with dealing with
> List[Foo] or List[Bar] separately. Using ADTs is a convenient way in Scala to
> model different types of messages, but Flink type system performance limits
> it to only a non performance-critical paths.
>
> It would be nice to have a sealed trait hierarchies support out of the box
> without kryo fallback.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)