-
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
Follow up of PR #1071 for Java API #1085
Conversation
Merged build triggered. |
Merged build started. |
Merged build finished. |
Refer to this link for build results: https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/15788/ |
My guess on the test failures is that we are starting up two spark contexts inside of the same JVM, which is not allowed. I had the same problems with the first PR for the Java API, which is why that test is marked ignore. If you can figure it out that would be great. However, I think fixing the idempotence bug for Java DDL commands is important enough to commit this without the additional tests running. |
OK, then I'll leave my newly added test cases "ignored". These test cases do pass locally. |
Merged build triggered. |
Merged build started. |
Merged build finished. |
Refer to this link for build results: https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/15807/ |
Merged build triggered. |
Merged build started. |
Merged build finished. All automated tests passed. |
All automated tests passed. |
Thanks! Merged into master and 1.0. |
Updated `JavaSQLContext` and `JavaHiveContext` similar to what we've done to `SQLContext` and `HiveContext` in PR #1071. Added corresponding test case for Spark SQL Java API. Author: Cheng Lian <[email protected]> Closes #1085 from liancheng/spark-2094-java and squashes the following commits: 29b8a51 [Cheng Lian] Avoided instantiating JavaSparkContext & JavaHiveContext to workaround test failure 92bb4fb [Cheng Lian] Marked test cases in JavaHiveQLSuite with "ignore" 22aec97 [Cheng Lian] Follow up of PR #1071 for Java API (cherry picked from commit 273afcb) Signed-off-by: Reynold Xin <[email protected]>
FYI This didn't get merged into branch-1.0. I did a manual cherry pick. |
Oh, sorry. Good catch! I must not have done the last push to apache part... |
Updated `JavaSQLContext` and `JavaHiveContext` similar to what we've done to `SQLContext` and `HiveContext` in PR apache#1071. Added corresponding test case for Spark SQL Java API. Author: Cheng Lian <[email protected]> Closes apache#1085 from liancheng/spark-2094-java and squashes the following commits: 29b8a51 [Cheng Lian] Avoided instantiating JavaSparkContext & JavaHiveContext to workaround test failure 92bb4fb [Cheng Lian] Marked test cases in JavaHiveQLSuite with "ignore" 22aec97 [Cheng Lian] Follow up of PR apache#1071 for Java API
Updated `JavaSQLContext` and `JavaHiveContext` similar to what we've done to `SQLContext` and `HiveContext` in PR apache#1071. Added corresponding test case for Spark SQL Java API. Author: Cheng Lian <[email protected]> Closes apache#1085 from liancheng/spark-2094-java and squashes the following commits: 29b8a51 [Cheng Lian] Avoided instantiating JavaSparkContext & JavaHiveContext to workaround test failure 92bb4fb [Cheng Lian] Marked test cases in JavaHiveQLSuite with "ignore" 22aec97 [Cheng Lian] Follow up of PR apache#1071 for Java API
…ask and result is spilled (#1085)
JIRA issue: SPARK-2094
Updated
JavaSQLContext
andJavaHiveContext
similar to what we've done toSQLContext
andHiveContext
in PR #1071. Added corresponding test case for Spark SQL Java API.