Repository: spark
Updated Branches:
  refs/heads/branch-2.2 6e1081cbe -> 4e53a4edd


[SS][MINOR] Fix flaky test in DatastreamReaderWriterSuite. temp checkpoint dir 
should be deleted

## What changes were proposed in this pull request?

Stopping query while it is being initialized can throw interrupt exception, in 
which case temporary checkpoint directories will not be deleted, and the test 
will fail.

Author: Tathagata Das <tathagata.das1...@gmail.com>

Closes #18442 from tdas/DatastreamReaderWriterSuite-fix.

(cherry picked from commit 60043f22458668ac7ecba94fa78953f23a6bdcec)
Signed-off-by: Tathagata Das <tathagata.das1...@gmail.com>


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/4e53a4ed
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/4e53a4ed
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/4e53a4ed

Branch: refs/heads/branch-2.2
Commit: 4e53a4edd72e372583f243c660bbcc0572205716
Parents: 6e1081c
Author: Tathagata Das <tathagata.das1...@gmail.com>
Authored: Thu Jul 6 00:20:26 2017 -0700
Committer: Tathagata Das <tathagata.das1...@gmail.com>
Committed: Thu Jul 6 00:20:40 2017 -0700

----------------------------------------------------------------------
 .../spark/sql/streaming/test/DataStreamReaderWriterSuite.scala      | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/4e53a4ed/sql/core/src/test/scala/org/apache/spark/sql/streaming/test/DataStreamReaderWriterSuite.scala
----------------------------------------------------------------------
diff --git 
a/sql/core/src/test/scala/org/apache/spark/sql/streaming/test/DataStreamReaderWriterSuite.scala
 
b/sql/core/src/test/scala/org/apache/spark/sql/streaming/test/DataStreamReaderWriterSuite.scala
index dc2506a..bae9d81 100644
--- 
a/sql/core/src/test/scala/org/apache/spark/sql/streaming/test/DataStreamReaderWriterSuite.scala
+++ 
b/sql/core/src/test/scala/org/apache/spark/sql/streaming/test/DataStreamReaderWriterSuite.scala
@@ -641,6 +641,7 @@ class DataStreamReaderWriterSuite extends StreamTest with 
BeforeAndAfter {
   test("temp checkpoint dir should be deleted if a query is stopped without 
errors") {
     import testImplicits._
     val query = MemoryStream[Int].toDS.writeStream.format("console").start()
+    query.processAllAvailable()
     val checkpointDir = new Path(
       query.asInstanceOf[StreamingQueryWrapper].streamingQuery.checkpointRoot)
     val fs = checkpointDir.getFileSystem(spark.sessionState.newHadoopConf())


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to