Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions graphx/src/main/scala/org/apache/spark/graphx/VertexRDD.scala
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,18 @@ class VertexRDD[@specialized VD: ClassTag](
partitionsRDD.map(_.size).reduce(_ + _)
}

override def checkpoint() {
partitionsRDD.checkpoint()
}

override def getCheckpointFile: Option[String] = {
partitionsRDD.getCheckpointFile
}

override def isCheckpointed: Boolean = {
partitionsRDD.isCheckpointed
}

/**
* Provides the `RDD[(VertexId, VD)]` equivalent output.
*/
Expand Down