Skip to content
Snippets Groups Projects
Commit 4da32bc0 authored by Yin Huai's avatar Yin Huai Committed by Andrew Or
Browse files

[SPARK-8567] [SQL] Increase the timeout of o.a.s.sql.hive.HiveSparkSubmitSuite to 5 minutes.

https://issues.apache.org/jira/browse/SPARK-8567

Looks like "SPARK-8368: includes jars passed in through --jars" is pretty flaky now. Based on some history runs, the time spent on a successful run may be from 1.5 minutes to almost 3 minutes. Let's try to increase the timeout and see if we can fix this test.

https://amplab.cs.berkeley.edu/jenkins/job/Spark-1.5-SBT/AMPLAB_JENKINS_BUILD_PROFILE=hadoop2.0,label=spark-test/385/testReport/junit/org.apache.spark.sql.hive/HiveSparkSubmitSuite/SPARK_8368__includes_jars_passed_in_through___jars/history/?start=25

Author: Yin Huai <yhuai@databricks.com>

Closes #8850 from yhuai/SPARK-8567-anotherTry.
parent fd61b004
No related branches found
No related tags found
No related merge requests found
......@@ -139,7 +139,7 @@ class HiveSparkSubmitSuite
new ProcessOutputCapturer(process.getErrorStream, captureOutput("stderr")).start()
try {
val exitCode = failAfter(180.seconds) { process.waitFor() }
val exitCode = failAfter(300.seconds) { process.waitFor() }
if (exitCode != 0) {
// include logs in output. Note that logging is async and may not have completed
// at the time this exception is raised
......
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