Uh oh!
There was an error while loading. Please reload this page.
Follow up of PR #1071 for Java API - #1085
Conversation
AmplabJenkins
commented
Jun 14, 2014
Merged build triggered. |
AmplabJenkins
commented
Jun 14, 2014
Merged build started. |
AmplabJenkins
commented
Jun 14, 2014
Merged build finished. |
AmplabJenkins
commented
Jun 14, 2014
Refer to this link for build results: https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/15788/ |
marmbrus
commented
Jun 15, 2014
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. |
liancheng
commented
Jun 15, 2014
OK, then I'll leave my newly added test cases "ignored". These test cases do pass locally. |
AmplabJenkins
commented
Jun 15, 2014
Merged build triggered. |
AmplabJenkins
commented
Jun 15, 2014
Merged build started. |
AmplabJenkins
commented
Jun 15, 2014
Merged build finished. |
AmplabJenkins
commented
Jun 15, 2014
Refer to this link for build results: https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/15807/ |
AmplabJenkins
commented
Jun 16, 2014
Merged build triggered. |
AmplabJenkins
commented
Jun 16, 2014
Merged build started. |
AmplabJenkins
commented
Jun 16, 2014
Merged build finished. All automated tests passed. |
AmplabJenkins
commented
Jun 16, 2014
All automated tests passed. |
marmbrus
commented
Jun 16, 2014
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 <lian.cs.zju@gmail.com> 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 <rxin@apache.org>
rxin
commented
Jun 16, 2014
FYI This didn't get merged into branch-1.0. I did a manual cherry pick. |
marmbrus
commented
Jun 17, 2014
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 <lian.cs.zju@gmail.com> Closesapache#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 <lian.cs.zju@gmail.com> Closesapache#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
JavaSQLContextandJavaHiveContextsimilar to what we've done toSQLContextandHiveContextin PR #1071. Added corresponding test case for Spark SQL Java API.