You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kyuubi.apache.org by ch...@apache.org on 2023/02/18 16:07:11 UTC

[kyuubi] branch master updated: [KYUUBI #4338] Bump Spark from 3.3.1 to 3.3.2

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 9aebeb8e7 [KYUUBI #4338] Bump Spark from 3.3.1 to 3.3.2
9aebeb8e7 is described below

commit 9aebeb8e777f88bf5358a87c9e941547d4db1cc6
Author: Luning Wang <wa...@gmail.com>
AuthorDate: Sun Feb 19 00:06:57 2023 +0800

    [KYUUBI #4338] Bump Spark from 3.3.1 to 3.3.2
    
    ### _Why are the changes needed?_
    
    close #4338 .
    
    ### _How was this patch tested?_
    - [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible
    
    - [ ] Add screenshots for manual tests if appropriate
    
    - [x] [Run test](https://kyuubi.readthedocs.io/en/master/develop_tools/testing.html#running-tests) locally before make a pull request
    
    Closes #4339 from a49a/bump-spark332.
    
    Closes #4338
    
    6c741d82 [Luning Wang] [KYUUBI #4338] Bump Spark from 3.3.1 to 3.3.2
    
    Authored-by: Luning Wang <wa...@gmail.com>
    Signed-off-by: Cheng Pan <ch...@apache.org>
---
 docker/playground/.env                                                  | 2 +-
 docs/quick_start/quick_start.rst                                        | 2 +-
 .../kubernetes/test/deployment/KyuubiOnKubernetesTestsSuite.scala       | 2 +-
 pom.xml                                                                 | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/docker/playground/.env b/docker/playground/.env
index d50e964cf..abd897192 100644
--- a/docker/playground/.env
+++ b/docker/playground/.env
@@ -24,7 +24,7 @@ KYUUBI_HADOOP_VERSION=3.3.4
 POSTGRES_VERSION=12
 POSTGRES_JDBC_VERSION=42.3.4
 SCALA_BINARY_VERSION=2.12
-SPARK_VERSION=3.3.1
+SPARK_VERSION=3.3.2
 SPARK_BINARY_VERSION=3.3
 SPARK_HADOOP_VERSION=3.3.2
 ZOOKEEPER_VERSION=3.6.3
diff --git a/docs/quick_start/quick_start.rst b/docs/quick_start/quick_start.rst
index ca73fba35..db564edb9 100644
--- a/docs/quick_start/quick_start.rst
+++ b/docs/quick_start/quick_start.rst
@@ -143,7 +143,7 @@ To install Spark, you need to unpack the tarball. For example,
 
 .. code-block::
 
-   $ tar zxf spark-3.3.1-bin-hadoop3.tgz
+   $ tar zxf spark-3.3.2-bin-hadoop3.tgz
 
 Configuration
 ~~~~~~~~~~~~~
diff --git a/integration-tests/kyuubi-kubernetes-it/src/test/scala/org/apache/kyuubi/kubernetes/test/deployment/KyuubiOnKubernetesTestsSuite.scala b/integration-tests/kyuubi-kubernetes-it/src/test/scala/org/apache/kyuubi/kubernetes/test/deployment/KyuubiOnKubernetesTestsSuite.scala
index c8894679d..6cf8dfcc8 100644
--- a/integration-tests/kyuubi-kubernetes-it/src/test/scala/org/apache/kyuubi/kubernetes/test/deployment/KyuubiOnKubernetesTestsSuite.scala
+++ b/integration-tests/kyuubi-kubernetes-it/src/test/scala/org/apache/kyuubi/kubernetes/test/deployment/KyuubiOnKubernetesTestsSuite.scala
@@ -54,7 +54,7 @@ class KyuubiOnKubernetesWithSparkTestsBase extends WithKyuubiServerOnKubernetes
     super.connectionConf ++
       Map(
         "spark.master" -> s"k8s://$miniKubeApiMaster",
-        "spark.kubernetes.container.image" -> "apache/spark:3.3.1",
+        "spark.kubernetes.container.image" -> "apache/spark:3.3.2",
         "spark.executor.memory" -> "512M",
         "spark.driver.memory" -> "1024M",
         "spark.kubernetes.driver.request.cores" -> "250m",
diff --git a/pom.xml b/pom.xml
index 2df40a658..a774acbb2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -188,7 +188,7 @@
           DO NOT forget to change the following properties when change the minor version of Spark:
           `delta.version`, `maven.plugin.scalatest.exclude.tags`
           -->
-        <spark.version>3.3.1</spark.version>
+        <spark.version>3.3.2</spark.version>
         <spark.binary.version>3.3</spark.binary.version>
         <spark.archive.name>spark-${spark.version}-bin-hadoop3.tgz</spark.archive.name>
         <spark.archive.mirror>${apache.archive.dist}/spark/spark-${spark.version}</spark.archive.mirror>