Skip to content
Snippets Groups Projects
Commit c9c1c0e5 authored by Shixiong Zhu's avatar Shixiong Zhu
Browse files

[SPARK-15508][STREAMING][TESTS] Fix flaky test: JavaKafkaStreamSuite.testKafkaStream

## What changes were proposed in this pull request?

`JavaKafkaStreamSuite.testKafkaStream` assumes when `sent.size == result.size`, the contents of `sent` and `result` should be same. However, that's not true. The content of `result` may not be the final content.

This PR modified the test to always retry the assertions even if the contents of `sent` and `result` are not same.

Here is the failure in Jenkins: http://spark-tests.appspot.com/tests/org.apache.spark.streaming.kafka.JavaKafkaStreamSuite/testKafkaStream

## How was this patch tested?

Jenkins unit tests.

Author: Shixiong Zhu <shixiong@databricks.com>

Closes #13281 from zsxwing/flaky-kafka-test.
parent 50b660d7
No related branches found
No related tags found
No related merge requests found
...@@ -122,14 +122,23 @@ public class JavaKafkaStreamSuite implements Serializable { ...@@ -122,14 +122,23 @@ public class JavaKafkaStreamSuite implements Serializable {
ssc.start(); ssc.start();
long startTime = System.currentTimeMillis(); long startTime = System.currentTimeMillis();
boolean sizeMatches = false; AssertionError lastError = null;
while (!sizeMatches && System.currentTimeMillis() - startTime < 20000) { while (System.currentTimeMillis() - startTime < 20000) {
sizeMatches = sent.size() == result.size(); try {
Assert.assertEquals(sent.size(), result.size());
for (Map.Entry<String, Integer> e : sent.entrySet()) {
Assert.assertEquals(e.getValue().intValue(), result.get(e.getKey()).intValue());
}
return;
} catch (AssertionError e) {
lastError = e;
}
Thread.sleep(200); Thread.sleep(200);
} }
Assert.assertEquals(sent.size(), result.size()); if (lastError != null) {
for (Map.Entry<String, Integer> e : sent.entrySet()) { throw lastError;
Assert.assertEquals(e.getValue().intValue(), result.get(e.getKey()).intValue()); } else {
Assert.fail("timeout");
} }
} }
} }
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