Home
last modified time | relevance | path

Searched refs:getCheckpointFile (Results 1 – 16 of 16) sorted by relevance

/dports/devel/spark/spark-2.1.1/mllib/src/main/scala/org/apache/spark/ml/tree/impl/
H A DNodeIdCache.scala129 if (checkpointQueue(1).getCheckpointFile.isDefined) {
133 val path = new Path(old.getCheckpointFile.get)
157 if (old.getCheckpointFile.isDefined) {
159 val path = new Path(old.getCheckpointFile.get)
/dports/devel/spark/spark-2.1.1/mllib/src/test/scala/org/apache/spark/mllib/impl/
H A DPeriodicRDDCheckpointerSuite.scala131 rdd.getCheckpointFile.foreach { checkpointFile =>
154 assert(rdd.getCheckpointFile.nonEmpty, "RDD should have 2 checkpoint files")
161 assert(rdd.getCheckpointFile.isEmpty, "RDD should not have any checkpoint files")
/dports/devel/spark/spark-2.1.1/core/src/test/scala/org/apache/spark/
H A DCheckpointSuite.scala78 assert(operatedRDD.getCheckpointFile.nonEmpty)
79 val recoveredRDD = sparkContext.checkpointFile[U](operatedRDD.getCheckpointFile.get)
287 assert(rddWithPartitioner.getCheckpointFile.get.nonEmpty,
292 val checkpointDir = new Path(rddWithPartitioner.getCheckpointFile.get)
303 val newRDD = sc.checkpointFile[(Int, Int)](rddWithPartitioner.getCheckpointFile.get)
341 assert(sc.checkpointFile[Int](parCollection.getCheckpointFile.get).collect() === result)
359 assert(sc.checkpointFile[String](blockRDD.getCheckpointFile.get).collect() === result)
/dports/devel/spark/spark-2.1.1/streaming/src/main/scala/org/apache/spark/streaming/dstream/
H A DDStreamCheckpointData.scala53 val checkpointFiles = dstream.generatedRDDs.filter(_._2.getCheckpointFile.isDefined)
54 .map(x => (x._1, x._2.getCheckpointFile.get))
/dports/devel/spark/spark-2.1.1/graphx/src/main/scala/org/apache/spark/graphx/impl/
H A DEdgeRDDImpl.scala84 override def getCheckpointFile: Option[String] = {
85 partitionsRDD.getCheckpointFile
H A DVertexRDDImpl.scala84 override def getCheckpointFile: Option[String] = {
85 partitionsRDD.getCheckpointFile
H A DGraphImpl.scala75 Seq(vertices.getCheckpointFile, replicatedVertexView.edges.getCheckpointFile).flatMap {
/dports/devel/spark/spark-2.1.1/mllib/src/main/scala/org/apache/spark/mllib/impl/
H A DPeriodicRDDCheckpointer.scala95 data.getCheckpointFile.map(x => x)
/dports/devel/spark/spark-2.1.1/core/src/main/scala/org/apache/spark/rdd/
H A DReliableCheckpointRDD.scala52 override val getCheckpointFile: Option[String] = Some(checkpointPath)
H A DRDD.scala1639 def getCheckpointFile: Option[String] = { method
/dports/devel/spark/spark-2.1.1/core/src/main/scala/org/apache/spark/api/java/
H A DJavaRDDLike.scala596 def getCheckpointFile(): Optional[String] = { method
597 JavaUtils.optionToOptional(rdd.getCheckpointFile)
/dports/devel/spark/spark-2.1.1/streaming/src/test/scala/org/apache/spark/streaming/rdd/
H A DMapWithStateRDDSuite.scala351 emptyStateRDD.getCheckpointFile.get)
/dports/devel/spark/spark-2.1.1/python/pyspark/
H A Dtests.py367 self.assertTrue(flatMappedRDD.getCheckpointFile() is None)
375 os.path.dirname(os.path.dirname(flatMappedRDD.getCheckpointFile())))
382 self.assertTrue(flatMappedRDD.getCheckpointFile() is None)
388 self.assertTrue(flatMappedRDD.getCheckpointFile() is not None)
389 recovered = self.sc._checkpointFile(flatMappedRDD.getCheckpointFile(),
H A Drdd.py298 def getCheckpointFile(self): member in RDD
304 checkpointFile = self._jrdd.rdd().getCheckpointFile()
/dports/devel/spark/spark-2.1.1/mllib/src/main/scala/org/apache/spark/ml/recommendation/
H A DALS.scala738 previousCheckpointFile = itemFactors.getCheckpointFile
752 previousCheckpointFile = itemFactors.getCheckpointFile
/dports/devel/spark/spark-2.1.1/core/src/test/java/org/apache/spark/
H A DJavaAPISuite.java1476 assertTrue(rdd.getCheckpointFile().isPresent()); in checkpointAndRestore()
1477 JavaRDD<Integer> recovered = sc.checkpointFile(rdd.getCheckpointFile().get()); in checkpointAndRestore()