-
- Downloads
[SPARK-4444] Drop VD type parameter from EdgeRDD
Due to vertex attribute caching, EdgeRDD previously took two type parameters: ED and VD. However, this is an implementation detail that should not be exposed in the interface, so this PR drops the VD type parameter. This requires removing the `filter` method from the EdgeRDD interface, because it depends on vertex attribute caching. Author: Ankur Dave <ankurdave@gmail.com> Closes #3303 from ankurdave/edgerdd-drop-tparam and squashes the following commits: 38dca9b [Ankur Dave] Leave EdgeRDD.fromEdges public fafeb51 [Ankur Dave] Drop VD type parameter from EdgeRDD
Showing
- graphx/src/main/scala/org/apache/spark/graphx/EdgeRDD.scala 12 additions, 23 deletionsgraphx/src/main/scala/org/apache/spark/graphx/EdgeRDD.scala
- graphx/src/main/scala/org/apache/spark/graphx/Graph.scala 1 addition, 1 deletiongraphx/src/main/scala/org/apache/spark/graphx/Graph.scala
- graphx/src/main/scala/org/apache/spark/graphx/VertexRDD.scala 5 additions, 5 deletions...hx/src/main/scala/org/apache/spark/graphx/VertexRDD.scala
- graphx/src/main/scala/org/apache/spark/graphx/impl/EdgeRDDImpl.scala 12 additions, 12 deletions...main/scala/org/apache/spark/graphx/impl/EdgeRDDImpl.scala
- graphx/src/main/scala/org/apache/spark/graphx/impl/GraphImpl.scala 7 additions, 6 deletions...c/main/scala/org/apache/spark/graphx/impl/GraphImpl.scala
- graphx/src/main/scala/org/apache/spark/graphx/impl/ReplicatedVertexView.scala 2 additions, 2 deletions...a/org/apache/spark/graphx/impl/ReplicatedVertexView.scala
- graphx/src/main/scala/org/apache/spark/graphx/impl/VertexRDDImpl.scala 1 addition, 1 deletion...in/scala/org/apache/spark/graphx/impl/VertexRDDImpl.scala
Loading
Please register or sign in to comment