-
- Downloads
Fix AbstractMethodError by inlining zip{Edge,Vertex}Partitions
The zip{Edge,Vertex}Partitions methods created doubly-nested closures and passed them to zipPartitions. For some reason this caused an AbstractMethodError when zipPartitions tried to invoke the closure. This commit works around the problem by inlining these methods wherever they are called, eliminating the doubly-nested closure.
Showing
- graph/src/main/scala/org/apache/spark/graph/EdgeRDD.scala 6 additions, 23 deletionsgraph/src/main/scala/org/apache/spark/graph/EdgeRDD.scala
- graph/src/main/scala/org/apache/spark/graph/VertexRDD.scala 21 additions, 22 deletionsgraph/src/main/scala/org/apache/spark/graph/VertexRDD.scala
- graph/src/main/scala/org/apache/spark/graph/impl/GraphImpl.scala 8 additions, 4 deletions...rc/main/scala/org/apache/spark/graph/impl/GraphImpl.scala
Please register or sign in to comment