-
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-3126][SPARK-3127][SQL] Fixed HiveThriftServer2Suite #2036
Conversation
QA tests have started for PR 2036 at commit
|
QA tests have finished for PR 2036 at commit
|
This still appears to be failing on Jenkins. Any ideas? |
hmm... jenkins is not working again?... https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/18886/consoleFull |
It's probably because of too small a timeout value in CliSuite. |
Actually I get the same error locally... I see this if I add more debug logging:
Are you gonna have time to work on this soon or are you traveling? I might take a look. |
I'm heading to the airport, should have a couple hours there but not guaranteed. So yes please have a look at it if you have time, thanks! |
My fault, forgot to fix the same quotation issue in |
QA tests have started for PR 2036 at commit
|
QA tests have finished for PR 2036 at commit
|
Jenkins, retest this please. |
QA tests have started for PR 2036 at commit
|
QA tests have finished for PR 2036 at commit
|
Seems that some garbage files are left on Jenkins, causing build failures:
|
Checked Jenkins, the workspace is clean now. Let's try again. |
Jenkins, retest this please. |
QA tests have started for PR 2036 at commit
|
QA tests have finished for PR 2036 at commit
|
Hmm... The workspace is polluted again :( |
Jenkins, retest this please. |
The unit test failure probably due to the assembly jar with duplicated netty jars (netty.3.2.2.Final.jar & netty.3.6.6.Final.jar, the class And of course the |
test this please |
QA tests have started for PR 2036 at commit
|
QA tests have finished for PR 2036 at commit
|
if (VERBOSE && stderr.length > 0) { | ||
println(stderr) | ||
} | ||
print(stdout) |
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.
Do we really want to print this always? Perhaps we can just print when there is a failure like we do in HiveContext
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.
Fixed this in #1856, which provides a faster and robuster version of these test suites, and is much more quiet when everything's OK. We can take care of that one later though.
Yay! SQL tests are passing again! I'm going to merge this into master and 1.1. |
This PR fixes two issues: 1. Fixes wrongly quoted command line option in `HiveThriftServer2Suite` that makes test cases hang until timeout. 1. Asks `dev/run-test` to run Spark SQL tests when `bin/spark-sql` and/or `sbin/start-thriftserver.sh` are modified. Author: Cheng Lian <[email protected]> Closes #2036 from liancheng/fix-thriftserver-test and squashes the following commits: f38c4eb [Cheng Lian] Fixed the same quotation issue in CliSuite 26b82a0 [Cheng Lian] Run SQL tests when dff contains bin/spark-sql and/or sbin/start-thriftserver.sh a87f83d [Cheng Lian] Extended timeout e5aa31a [Cheng Lian] Fixed metastore JDBC URI quotation (cherry picked from commit cf46e72) Signed-off-by: Michael Armbrust <[email protected]>
This PR fixes two issues: 1. Fixes wrongly quoted command line option in `HiveThriftServer2Suite` that makes test cases hang until timeout. 1. Asks `dev/run-test` to run Spark SQL tests when `bin/spark-sql` and/or `sbin/start-thriftserver.sh` are modified. Author: Cheng Lian <[email protected]> Closes apache#2036 from liancheng/fix-thriftserver-test and squashes the following commits: f38c4eb [Cheng Lian] Fixed the same quotation issue in CliSuite 26b82a0 [Cheng Lian] Run SQL tests when dff contains bin/spark-sql and/or sbin/start-thriftserver.sh a87f83d [Cheng Lian] Extended timeout e5aa31a [Cheng Lian] Fixed metastore JDBC URI quotation
… expression (apache#2036) * fix: Avoid redundant array transform * add test * More --------- Co-authored-by: Liang-Chi Hsieh <[email protected]>
This PR fixes two issues:
HiveThriftServer2Suite
that makes test cases hang until timeout.dev/run-test
to run Spark SQL tests whenbin/spark-sql
and/orsbin/start-thriftserver.sh
are modified.