Repository: spark
Updated Branches:
  refs/heads/master fd61b0048 -> 4da32bc0e


[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 <yh...@databricks.com>

Closes #8850 from yhuai/SPARK-8567-anotherTry.


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

Branch: refs/heads/master
Commit: 4da32bc0e747fefe847bffe493785d4d16069c04
Parents: fd61b00
Author: Yin Huai <yh...@databricks.com>
Authored: Tue Sep 22 00:07:30 2015 -0700
Committer: Andrew Or <and...@databricks.com>
Committed: Tue Sep 22 00:07:30 2015 -0700

----------------------------------------------------------------------
 .../scala/org/apache/spark/sql/hive/HiveSparkSubmitSuite.scala     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/4da32bc0/sql/hive/src/test/scala/org/apache/spark/sql/hive/HiveSparkSubmitSuite.scala
----------------------------------------------------------------------
diff --git 
a/sql/hive/src/test/scala/org/apache/spark/sql/hive/HiveSparkSubmitSuite.scala 
b/sql/hive/src/test/scala/org/apache/spark/sql/hive/HiveSparkSubmitSuite.scala
index 97df249..5f1660b 100644
--- 
a/sql/hive/src/test/scala/org/apache/spark/sql/hive/HiveSparkSubmitSuite.scala
+++ 
b/sql/hive/src/test/scala/org/apache/spark/sql/hive/HiveSparkSubmitSuite.scala
@@ -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


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

Reply via email to