I've noticed that most of Scalaz classes are not serializable. In this case, I'm trying to use a type class for custom-sorting an array in Spark.
A reduce example might be something like this:
> val ord = Order[T]{ ... }
> sc.makeRDD[T](...).grupBy(...).map {
case (_, grouped) => IList[T](grouped.toList).sorted(ord).distinct(ord)
}
As you should expect, this implementation throws a NotSerializableException
because Order[T]
is not serializable.
Is there any way to make Order[T]
serializable? In a perfect world, I would wish to avoid this problem still using scalaz. In a not-so-perfect one, I'm open to consider other implementations.
Should that happen, it's mandatory to keep the custom sorting and distinct implementations in a mantainable and extensible way.
If you need access to some non-serializable object you can wrap it in an
object
:In your case you would replace my
NotSerializablePrinter
instance with your ScalazOrder
instance. This example is pulled from this useful article(item 3a).