@@ -21,16 +21,14 @@ import org.apache.spark.rdd.RDD
2121import org .apache .spark .serializer .Serializer
2222
2323/**
24- * <span class="badge badge-red">DEVELOPER API - UNSTABLE</span>
25- *
24+ * <span class="badge" style="float: right; background-color: #44751E;">DEVELOPER API</span>
2625 * Base class for dependencies.
2726 */
2827abstract class Dependency [T ](val rdd : RDD [T ]) extends Serializable
2928
3029
3130/**
32- * <span class="badge badge-red">DEVELOPER API - UNSTABLE</span>
33- *
31+ * <span class="badge" style="float: right; background-color: #44751E;">DEVELOPER API</span>
3432 * Base class for dependencies where each partition of the parent RDD is used by at most one
3533 * partition of the child RDD. Narrow dependencies allow for pipelined execution.
3634 */
@@ -45,8 +43,7 @@ abstract class NarrowDependency[T](rdd: RDD[T]) extends Dependency(rdd) {
4543
4644
4745/**
48- * <span class="badge badge-red">DEVELOPER API - UNSTABLE</span>
49- *
46+ * <span class="badge" style="float: right; background-color: #44751E;">DEVELOPER API</span>
5047 * Represents a dependency on the output of a shuffle stage.
5148 * @param rdd the parent RDD
5249 * @param partitioner partitioner used to partition the shuffle output
@@ -65,8 +62,7 @@ class ShuffleDependency[K, V](
6562
6663
6764/**
68- * <span class="badge badge-red">DEVELOPER API - UNSTABLE</span>
69- *
65+ * <span class="badge" style="float: right; background-color: #44751E;">DEVELOPER API</span>
7066 * Represents a one-to-one dependency between partitions of the parent and child RDDs.
7167 */
7268class OneToOneDependency [T ](rdd : RDD [T ]) extends NarrowDependency [T ](rdd) {
@@ -75,8 +71,7 @@ class OneToOneDependency[T](rdd: RDD[T]) extends NarrowDependency[T](rdd) {
7571
7672
7773/**
78- * <span class="badge badge-red">DEVELOPER API - UNSTABLE</span>
79- *
74+ * <span class="badge" style="float: right; background-color: #44751E;">DEVELOPER API</span>
8075 * Represents a one-to-one dependency between ranges of partitions in the parent and child RDDs.
8176 * @param rdd the parent RDD
8277 * @param inStart the start of the range in the parent RDD
0 commit comments