Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SPARK-14804][Graphx] Graph vertexRDD/EdgeRDD checkpoint results Clas… #15447

Closed
wants to merge 1 commit into from

Conversation

apivovarov
Copy link
Contributor

@apivovarov apivovarov commented Oct 12, 2016

EdgeRDD/VertexRDD wrap partitionsRDD
e.g. EdgeRDDImpl.checkpoint() calls partitionsRDD.checkpoint()
EdgeRDD/VertexRDD isCheckpointed() method should be implemented the same way - it should call partitionsRDD.isCheckpointed

Spark-shell test works:

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
g.vertices.collect
g.edges.collect
g.isCheckpointed // true
// try to collect EdgeRDD/VertexRDD again
g.vertices.collect // works
g.edges.collect  // works

@apivovarov
Copy link
Contributor Author

Related PRs
#15396
#12576

@SparkQA
Copy link

SparkQA commented Oct 12, 2016

Test build #3329 has finished for PR 15447 at commit b123b68.

  • This patch passes all tests.
  • This patch merges cleanly.
  • This patch adds no public classes.

@maropu maropu mentioned this pull request Apr 23, 2017
maropu added a commit to maropu/spark that referenced this pull request Apr 23, 2017
@asfgit asfgit closed this in e9f9715 Apr 24, 2017
@felixcheung
Copy link
Member

@apivovarov do we need this fix?

peter-toth pushed a commit to peter-toth/spark that referenced this pull request Oct 6, 2018
This pr proposed to close stale PRs. Currently, we have 400+ open PRs and there are some stale PRs whose JIRA tickets have been already closed and whose JIRA tickets does not exist (also, they seem not to be minor issues).

// Open PRs whose JIRA tickets have been already closed
Closes apache#11785
Closes apache#13027
Closes apache#13614
Closes apache#13761
Closes apache#15197
Closes apache#14006
Closes apache#12576
Closes apache#15447
Closes apache#13259
Closes apache#15616
Closes apache#14473
Closes apache#16638
Closes apache#16146
Closes apache#17269
Closes apache#17313
Closes apache#17418
Closes apache#17485
Closes apache#17551
Closes apache#17463
Closes apache#17625

// Open PRs whose JIRA tickets does not exist and they are not minor issues
Closes apache#10739
Closes apache#15193
Closes apache#15344
Closes apache#14804
Closes apache#16993
Closes apache#17040
Closes apache#15180
Closes apache#17238

N/A

Author: Takeshi Yamamuro <[email protected]>

Closes apache#17734 from maropu/resolved_pr.

Change-Id: Id2e590aa7283fe5ac01424d30a40df06da6098b5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants