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
if all Orderings are OrderedSerializations. We probably need some method like:
implicitdefwithOrderedSerialization[A:Ordering, B:Ordering]:Ordering[(A, B)] =// if both Orderings are OrderedSerialization, use OrderedSerialization2, else Ordering.tuple2
and use that in internal methods.
The text was updated successfully, but these errors were encountered:
@johnynek Here I think if the individual ordering for row/col is an OrderedSerialization, it will just work. But for the composed ordering of the two, we will need to add OrderedSerialization support. Is this correct?
Ofter
Ordering
s are composed in here:https://github.com/twitter/scalding/blob/develop/scalding-core/src/main/scala/com/twitter/scalding/mathematics/Matrix2.scala
We need to do that using:
https://github.com/twitter/scalding/blob/develop/scalding-serialization/src/main/scala/com/twitter/scalding/serialization/Serialization2.scala#L61
if all Orderings are OrderedSerializations. We probably need some method like:
and use that in internal methods.
The text was updated successfully, but these errors were encountered: