[ 
https://issues.apache.org/jira/browse/FLINK-18631?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17327730#comment-17327730
 ] 

Flink Jira Bot commented on FLINK-18631:
----------------------------------------

This major issue is unassigned and itself and all of its Sub-Tasks have not 
been updated for 30 days. So, it has been labeled "stale-major". If this ticket 
is indeed "major", please either assign yourself or give an update. Afterwards, 
please remove the label. 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: Major
>              Labels: performance, pull-request-available, stale-major
>
> 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.3.4#803005)

Reply via email to