Skip to content
Snippets Groups Projects
Commit b545d752 authored by Shixiong Zhu's avatar Shixiong Zhu Committed by Tathagata Das
Browse files

[SPARK-14860][TESTS] Create a new Waiter in reset to bypass an issue of ScalaTest's Waiter.wait

## What changes were proposed in this pull request?

This PR updates `QueryStatusCollector.reset` to create Waiter instead of calling `await(1 milliseconds)` to bypass an ScalaTest's issue that Waiter.await may block forever.

## How was this patch tested?

I created a local stress test to call codes in `test("event ordering")` 100 times. It cannot pass without this patch.

Author: Shixiong Zhu <shixiong@databricks.com>

Closes #12623 from zsxwing/flaky-test.
parent 4ad492c4
No related branches found
No related tags found
No related merge requests found
......@@ -19,8 +19,6 @@ package org.apache.spark.sql.util
import java.util.concurrent.ConcurrentLinkedQueue
import scala.util.control.NonFatal
import org.scalatest.BeforeAndAfter
import org.scalatest.PrivateMethodTester._
import org.scalatest.concurrent.AsyncAssertions.Waiter
......@@ -164,8 +162,8 @@ class ContinuousQueryListenerSuite extends StreamTest with SharedSQLContext with
}
class QueryStatusCollector extends ContinuousQueryListener {
private val asyncTestWaiter = new Waiter // to catch errors in the async listener events
// to catch errors in the async listener events
@volatile private var asyncTestWaiter = new Waiter
@volatile var startStatus: QueryStatus = null
@volatile var terminationStatus: QueryStatus = null
......@@ -175,11 +173,7 @@ class ContinuousQueryListenerSuite extends StreamTest with SharedSQLContext with
startStatus = null
terminationStatus = null
progressStatuses.clear()
// To reset the waiter
try asyncTestWaiter.await(timeout(1 milliseconds)) catch {
case NonFatal(e) =>
}
asyncTestWaiter = new Waiter
}
def checkAsyncErrors(): Unit = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment