-
Notifications
You must be signed in to change notification settings - Fork 28.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[SPARK-8567] [SQL] Increase the timeout of HiveSparkSubmitSuite #6957
Conversation
Test build #35567 has finished for PR 6957 at commit
|
Jenkins, retest this please. |
Test build #35572 has finished for PR 6957 at commit
|
hmm... Jenkins still does not have the logs of applications launched in |
@yhuai, where are those logs written when you run the tests locally? We might have to add those log paths to the list that Jenkins checks when attaching build artifacts in the post-build step. |
They are in
|
I just ran this locally and my
|
@andrewor14 Yeah, I also got that in my laptop. |
Partly reproduced this issue on my laptop. Trying my luck with #6978 by printing rather than logging stdout/stderr of the spawned process. |
Ok, let's retest this please now that #6978 is merged. |
Test build #35705 has finished for PR 6957 at commit
|
retest this please |
@@ -563,7 +563,7 @@ private[hive] object HiveContext { | |||
doc = "TODO") | |||
|
|||
/** Constructs a configuration for hive, where the metastore is located in a temp directory. */ | |||
def newTemporaryConfiguration(): Map[String, String] = { | |||
def newTemporaryConfiguration(useInMemoryDerby: Boolean): Map[String, String] = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
could just make this default to false
Test build #35714 has finished for PR 6957 at commit
|
Test build #35717 has finished for PR 6957 at commit
|
LGTM as a temporary fix. Let's merge this into master and 1.4 and see if it fixes the test failures. |
https://issues.apache.org/jira/browse/SPARK-8567 Author: Yin Huai <[email protected]> Closes #6957 from yhuai/SPARK-8567 and squashes the following commits: 62dff5b [Yin Huai] Increase the timeout. Conflicts: sql/hive/src/test/scala/org/apache/spark/sql/hive/HiveSparkSubmitSuite.scala
I will leave the JIRA open for a day or two until after we can verify that this fixes it. |
Test build #35726 has finished for PR 6957 at commit
|
https://issues.apache.org/jira/browse/SPARK-8567 Author: Yin Huai <[email protected]> Closes apache#6957 from yhuai/SPARK-8567 and squashes the following commits: 62dff5b [Yin Huai] Increase the timeout. Conflicts: sql/hive/src/test/scala/org/apache/spark/sql/hive/HiveSparkSubmitSuite.scala
@yhuai As for why the log doesn't appear on Jenkins, my guess is that the |
https://issues.apache.org/jira/browse/SPARK-8567