You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sort consists of sorting elements by a composite key <Window, ExtractedObject>. SortTranslator for flink executor relies on GenericTypeComparator for Window as well as for user defined extracted object which causes a huge performance overhead because of deserializing both objects on every compare.
we can define our custom TypeComparator for known windows, or just emit NormalizableKey instead of the window
however without knowing the extracted objects' type we are not able to tune the comparing of those objects
The text was updated successfully, but these errors were encountered:
Sort consists of sorting elements by a composite key <Window, ExtractedObject>.
SortTranslator
for flink executor relies onGenericTypeComparator
forWindow
as well as for user defined extracted object which causes a huge performance overhead because of deserializing both objects on every compare.TypeComparator
for known windows, or just emitNormalizableKey
instead of the windowThe text was updated successfully, but these errors were encountered: