[ https://issues.apache.org/jira/browse/SPARK-17877?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Hyukjin Kwon resolved SPARK-17877. ---------------------------------- Resolution: Incomplete > Can not checkpoint connectedComponents resulting graph > ------------------------------------------------------ > > Key: SPARK-17877 > URL: https://issues.apache.org/jira/browse/SPARK-17877 > Project: Spark > Issue Type: Bug > Components: GraphX > Affects Versions: 1.5.2, 1.6.2, 2.0.1, 2.3.0 > Reporter: Alexander Pivovarov > Priority: Minor > Labels: bulk-closed > > The following code demonstrates the issue > {code} > import org.apache.spark.graphx._ > val users = sc.parallelize(List(3L -> "lucas", 7L -> "john", 5L -> "matt", 2L > -> "kelly")) > val rel = sc.parallelize(List(Edge(3L, 7L, "collab"), Edge(5L, 3L, > "advisor"), Edge(2L, 5L, "colleague"), Edge(5L, 7L, "pi"))) > sc.setCheckpointDir("/tmp/check") > val g = Graph(users, rel) > g.checkpoint // /tmp/check/b1f46ba5-357a-4d6d-8f4d-411b64b27c2f appears > val gg = g.connectedComponents > gg.checkpoint > gg.vertices.collect > gg.edges.collect > gg.isCheckpointed // res5: Boolean = false, /tmp/check still contains only > 1 folder b1f46ba5-357a-4d6d-8f4d-411b64b27c2f > {code} > I think the last line should return true instead of false -- This message was sent by Atlassian Jira (v8.3.4#803005) --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org For additional commands, e-mail: issues-h...@spark.apache.org