:: DeveloperApi :: A stream for reading serialized objects.
:: DeveloperApi :: A stream for reading serialized objects.
:: DeveloperApi :: A Spark serializer that uses Java's built-in serialization.
:: DeveloperApi :: A Spark serializer that uses Java's built-in serialization.
This serializer is not guaranteed to be wire-compatible across different versions of Spark. It is intended to be used to serialize/de-serialize data within a single Spark application.
Interface implemented by clients to register their classes with Kryo when using Kryo serialization.
A Spark serializer that uses the Kryo serialization library.
A Spark serializer that uses the Kryo serialization library.
This serializer is not guaranteed to be wire-compatible across different versions of Spark. It is intended to be used to serialize/de-serialize data within a single Spark application.
A pooled, optimized version of Spark's KryoSerializer that also works for closure serialization.
A pooled, optimized version of Spark's KryoSerializer that also works for closure serialization.
Note that this serializer is not guaranteed to be wire-compatible across different versions of Spark. It is intended to be used to serialize/de-serialize data within a single Spark application.
:: DeveloperApi :: A stream for writing serialized objects.
:: DeveloperApi :: A stream for writing serialized objects.
:: DeveloperApi :: A serializer.
:: DeveloperApi :: A serializer. Because some serialization libraries are not thread safe, this class is used to create org.apache.spark.serializer.SerializerInstance objects that do the actual serialization and are guaranteed to only be called from one thread at a time.
Implementations of this trait should implement:
1. a zero-arg constructor or a constructor that accepts a org.apache.spark.SparkConf as parameter. If both constructors are defined, the latter takes precedence.
2. Java serialization interface.
Serializers are not required to be wire-compatible across different versions of Spark. They are intended to be used to serialize/de-serialize data within a single Spark application.
:: DeveloperApi :: An instance of a serializer, for use by one thread at a time.
:: DeveloperApi :: An instance of a serializer, for use by one thread at a time.
It is legal to create multiple serialization / deserialization streams from the same SerializerInstance as long as those streams are all used within the same thread.
This serializer factory will instantiate new serializers of a given class via reflection.
This serializer factory will instantiate new serializers of a given class via reflection. If the class implements Serializable and has either of writeReplace/readResolve/readObject/writeObject then it will set JavaSerializer for that class else FieldSerailizer will be used
Pluggable serializers for RDD and shuffle data.
org.apache.spark.serializer.Serializer