-
- Downloads
[SPARK-5534] [graphx] Graph getStorageLevel fix
This fixes getStorageLevel for EdgeRDDImpl and VertexRDDImpl (and therefore for Graph). See code example on JIRA which failed before but works with this patch: [https://issues.apache.org/jira/browse/SPARK-5534] (The added unit tests also failed before but work with this fix.) Note: I used partitionsRDD, assuming that getStorageLevel will only be called on the driver. CC: mengxr (related to LDA PR), rxin ankurdave Thanks in advance! Author: Joseph K. Bradley <joseph@databricks.com> Closes #4317 from jkbradley/graphx-storagelevel and squashes the following commits: 1c21e49 [Joseph K. Bradley] made graph getStorageLevel test more robust 18d64ca [Joseph K. Bradley] Added tests for getStorageLevel in VertexRDDSuite, EdgeRDDSuite, GraphSuite 17b488b [Joseph K. Bradley] overrode getStorageLevel in Vertex/EdgeRDDImpl to use partitionsRDD
Showing
- graphx/src/main/scala/org/apache/spark/graphx/impl/EdgeRDDImpl.scala 2 additions, 0 deletions...main/scala/org/apache/spark/graphx/impl/EdgeRDDImpl.scala
- graphx/src/main/scala/org/apache/spark/graphx/impl/VertexRDDImpl.scala 2 additions, 0 deletions...in/scala/org/apache/spark/graphx/impl/VertexRDDImpl.scala
- graphx/src/test/scala/org/apache/spark/graphx/EdgeRDDSuite.scala 37 additions, 0 deletions...src/test/scala/org/apache/spark/graphx/EdgeRDDSuite.scala
- graphx/src/test/scala/org/apache/spark/graphx/GraphSuite.scala 15 additions, 0 deletions...x/src/test/scala/org/apache/spark/graphx/GraphSuite.scala
- graphx/src/test/scala/org/apache/spark/graphx/VertexRDDSuite.scala 15 additions, 4 deletions...c/test/scala/org/apache/spark/graphx/VertexRDDSuite.scala
Please register or sign in to comment