You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by zj...@apache.org on 2020/09/15 05:24:00 UTC

[zeppelin] branch master updated: [ZEPPELIN-5037]. Upgrade spark to 3.0.1

This is an automated email from the ASF dual-hosted git repository.

zjffdu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/zeppelin.git


The following commit(s) were added to refs/heads/master by this push:
     new 2dfe3dc  [ZEPPELIN-5037]. Upgrade spark to 3.0.1
2dfe3dc is described below

commit 2dfe3dce55290b9a1be1e41029a3b26c07348b8d
Author: Jeff Zhang <zj...@apache.org>
AuthorDate: Sat Sep 12 17:15:04 2020 +0800

    [ZEPPELIN-5037]. Upgrade spark to 3.0.1
    
    ### What is this PR for?
    
    Trivial PR to upgrade spark to 3.0.1
    
    ### What type of PR is it?
    [ Improvement ]
    
    ### Todos
    * [ ] - Task
    
    ### What is the Jira issue?
    * https://issues.apache.org/jira/browse/ZEPPELIN-5037
    
    ### How should this be tested?
    * CI pass
    
    ### Screenshots (if appropriate)
    
    ### Questions:
    * Does the licenses files need update? No
    * Is there breaking changes for older versions? No
    * Does this needs documentation? No
    
    Author: Jeff Zhang <zj...@apache.org>
    
    Closes #3906 from zjffdu/ZEPPELIN-5037 and squashes the following commits:
    
    d326ad13e [Jeff Zhang] [ZEPPELIN-5037]. Upgrade spark to 3.0.1
---
 spark/pom.xml                                                         | 2 +-
 spark/spark3-shims/pom.xml                                            | 2 +-
 .../java/org/apache/zeppelin/integration/SparkIntegrationTest30.java  | 4 ++--
 .../org/apache/zeppelin/integration/ZeppelinSparkClusterTest30.java   | 4 ++--
 4 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/spark/pom.xml b/spark/pom.xml
index 022c3cd..57de860 100644
--- a/spark/pom.xml
+++ b/spark/pom.xml
@@ -197,7 +197,7 @@
         <profile>
             <id>spark-3.0</id>
             <properties>
-                <spark.version>3.0.0</spark.version>
+                <spark.version>3.0.1</spark.version>
                 <protobuf.version>2.5.0</protobuf.version>
                 <py4j.version>0.10.9</py4j.version>
             </properties>
diff --git a/spark/spark3-shims/pom.xml b/spark/spark3-shims/pom.xml
index 853bf71..9f4f8b0 100644
--- a/spark/spark3-shims/pom.xml
+++ b/spark/spark3-shims/pom.xml
@@ -34,7 +34,7 @@
 
   <properties>
     <scala.binary.version>2.12</scala.binary.version>
-    <spark.version>3.0.0</spark.version>
+    <spark.version>3.0.1</spark.version>
   </properties>
 
   <dependencies>
diff --git a/zeppelin-interpreter-integration/src/test/java/org/apache/zeppelin/integration/SparkIntegrationTest30.java b/zeppelin-interpreter-integration/src/test/java/org/apache/zeppelin/integration/SparkIntegrationTest30.java
index 8e3c8c8..ed58aaf 100644
--- a/zeppelin-interpreter-integration/src/test/java/org/apache/zeppelin/integration/SparkIntegrationTest30.java
+++ b/zeppelin-interpreter-integration/src/test/java/org/apache/zeppelin/integration/SparkIntegrationTest30.java
@@ -34,8 +34,8 @@ public class SparkIntegrationTest30 extends SparkIntegrationTest {
   @Parameterized.Parameters
   public static List<Object[]> data() {
     return Arrays.asList(new Object[][]{
-            {"3.0.0", "2.7"},
-            {"3.0.0", "3.2"}
+            {"3.0.1", "2.7"},
+            {"3.0.1", "3.2"}
     });
   }
 
diff --git a/zeppelin-interpreter-integration/src/test/java/org/apache/zeppelin/integration/ZeppelinSparkClusterTest30.java b/zeppelin-interpreter-integration/src/test/java/org/apache/zeppelin/integration/ZeppelinSparkClusterTest30.java
index 8405900..097217a 100644
--- a/zeppelin-interpreter-integration/src/test/java/org/apache/zeppelin/integration/ZeppelinSparkClusterTest30.java
+++ b/zeppelin-interpreter-integration/src/test/java/org/apache/zeppelin/integration/ZeppelinSparkClusterTest30.java
@@ -33,8 +33,8 @@ public class ZeppelinSparkClusterTest30 extends ZeppelinSparkClusterTest {
   @Parameterized.Parameters
   public static List<Object[]> data() {
     return Arrays.asList(new Object[][]{
-            {"3.0.0", "2.7"},
-            {"3.0.0", "3.2"}
+            {"3.0.1", "2.7"},
+            {"3.0.1", "3.2"}
     });
   }
 }