Skip to content

Commit 03215e3

Browse files
yhuaiAndrew Or
authored andcommitted
[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 apache#8850 from yhuai/SPARK-8567-anotherTry. (cherry picked from commit 4da32bc) Signed-off-by: Andrew Or <andrew@databricks.com>
1 parent d0e6e53 commit 03215e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/hive/src/test/scala/org/apache/spark/sql/hive/HiveSparkSubmitSuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ class HiveSparkSubmitSuite
139139
new ProcessOutputCapturer(process.getErrorStream, captureOutput("stderr")).start()
140140

141141
try {
142-
val exitCode = failAfter(180.seconds) { process.waitFor() }
142+
val exitCode = failAfter(300.seconds) { process.waitFor() }
143143
if (exitCode != 0) {
144144
// include logs in output. Note that logging is async and may not have completed
145145
// at the time this exception is raised

0 commit comments

Comments
 (0)