Description
Graph has a checkpoint method but does not have other helper functionality which RDD has. Proposal:
/** * Return whether this Graph has been checkpointed or not */ def isCheckpointed: Boolean /** * Gets the name of the files to which this Graph was checkpointed */ def getCheckpointFiles: Seq[String]
I need this for SPARK-1405.