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 7dc2c23 commit adc5fc3Copy full SHA for adc5fc3
graphx/src/main/scala/org/apache/spark/graphx/lib/PageRank.scala
@@ -232,16 +232,15 @@ object PageRank extends Logging {
232
rankGraph.edges.foreachPartition(x => {}) // also materializes rankGraph.vertices
233
prevRankGraph.vertices.unpersist(false)
234
prevRankGraph.edges.unpersist(false)
235
- sourcesInitMapBC.destroy(false)
236
237
logInfo(s"Parallel Personalized PageRank finished iteration $i.")
238
239
i += 1
240
}
241
242
rankGraph.mapVertices { (vid, attr) =>
243
- Vectors.fromBreeze(attr)
244
- }
+ Vectors.fromBreeze(attr)
+ }
245
246
247
/**
0 commit comments