We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7420185 commit 2a8d75aCopy full SHA for 2a8d75a
core/src/main/scala/org/apache/spark/Dependency.scala
@@ -44,7 +44,8 @@ abstract class NarrowDependency[T](rdd: RDD[T]) extends Dependency(rdd) {
44
* Represents a dependency on the output of a shuffle stage.
45
* @param rdd the parent RDD
46
* @param partitioner partitioner used to partition the shuffle output
47
- * @param serializer [[Serializer]] to use.
+ * @param serializer [[Serializer]] to use. If set to null, the default serializer, as specified
48
+ * by `spark.serializer` config option, will be used.
49
*/
50
class ShuffleDependency[K, V](
51
@transient rdd: RDD[_ <: Product2[K, V]],
0 commit comments