Skip to content

Commit 24e265d

Browse files
SteNicholaspan3793
authored andcommitted
[KYUUBI #1876] Set Spark 3.2.1 as default
<!-- Thanks for sending a pull request! Here are some tips for you: 1. If this is your first time, please read our contributor guidelines: https://kyuubi.readthedocs.io/en/latest/community/contributions.html 2. If the PR is related to an issue in https://github.com/apache/incubator-kyuubi/issues, add '[KYUUBI #XXXX]' in your PR title, e.g., '[KYUUBI #XXXX] Your PR title ...'. 3. If the PR is unfinished, add '[WIP]' in your PR title, e.g., '[WIP][KYUUBI #XXXX] Your PR title ...'. --> ### _Why are the changes needed?_ <!-- Please clarify why the changes are needed. For instance, 1. If you add a feature, you can talk about the use case of it. 2. If you fix a bug, you can clarify why it is a bug. --> Set Spark 3.2.1 as default. ### _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.apache.org/docs/latest/develop_tools/testing.html#running-tests) locally before make a pull request Closes #1913 from SteNicholas/KYUUBI-1876. Closes #1876 1a6e4c6 [SteNicholas] [KYUUBI #1876] Set Spark 3.2.1 as default Authored-by: SteNicholas <programgeek@163.com> Signed-off-by: Cheng Pan <chengpan@apache.org>
1 parent 6811530 commit 24e265d

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

bin/docker-image-tool.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,8 +208,8 @@ Examples:
208208
$0 -r docker.io/myrepo -t v1.4.0 build
209209
$0 -r docker.io/myrepo -t v1.4.0 push
210210
211-
- Build and push with tag "v3.0.0" and Spark-3.1.2 as base image to docker.io/myrepo
212-
$0 -r docker.io/myrepo -t v3.0.0 -b BASE_IMAGE=repo/spark:3.1.2 build
211+
- Build and push with tag "v3.0.0" and Spark-3.2.1 as base image to docker.io/myrepo
212+
$0 -r docker.io/myrepo -t v3.0.0 -b BASE_IMAGE=repo/spark:3.2.1 build
213213
$0 -r docker.io/myrepo -t v3.0.0 push
214214
215215
- Build and push for multiple archs to docker.io/myrepo

build/release/create-package.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ package_binary() {
7575

7676
echo "Creating binary release tarball ${BIN_TGZ_FILE}"
7777

78-
${KYUUBI_DIR}/build/dist --tgz --spark-provided -Pspark-3.1
78+
${KYUUBI_DIR}/build/dist --tgz --spark-provided -Pspark-3.2
7979

8080
cp "${BIN_TGZ_FILE}" "${RELEASE_DIR}"
8181

docs/community/release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ export RELEASE_RC_NO=<RC number, e.g. 0>
175175
```shell
176176
build/mvn versions:set -DgenerateBackupPoms=false \
177177
-DnewVersion="${RELEASE_VERSION}" \
178-
-Pspark-3.1,spark-block-cleaner
178+
-Pspark-3.2,spark-block-cleaner
179179

180180
git commit -am "[RELEASE] Bump ${RELEASE_VERSION}"
181181
```

docs/deployment/kyuubi_on_kubernetes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ Examples:
4747
$0 -r docker.io/myrepo -t v1.4.0 build
4848
$0 -r docker.io/myrepo -t v1.4.0 push
4949

50-
- Build and push with tag "v3.0.0" and Spark-3.1.2 as base image to docker.io/myrepo
51-
$0 -r docker.io/myrepo -t v3.0.0 -b BASE_IMAGE=repo/spark:3.1.2 build
50+
- Build and push with tag "v3.0.0" and Spark-3.2.1 as base image to docker.io/myrepo
51+
$0 -r docker.io/myrepo -t v3.0.0 -b BASE_IMAGE=repo/spark:3.2.1 build
5252
$0 -r docker.io/myrepo -t v3.0.0 push
5353

5454
- Build and push for multiple archs to docker.io/myrepo

pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
<commons-lang.version>2.6</commons-lang.version>
102102
<commons-lang3.version>3.10</commons-lang3.version>
103103
<curator.version>2.12.0</curator.version>
104-
<delta.version>1.0.1</delta.version>
104+
<delta.version>1.1.0</delta.version>
105105
<flink.version>1.14.3</flink.version>
106106
<flink.archive.name>flink-${flink.version}-bin-scala_${scala.binary.version}.tgz</flink.archive.name>
107107
<flink.archive.mirror>https://archive.apache.org/dist/flink/flink-${flink.version}</flink.archive.mirror>
@@ -133,7 +133,8 @@
133133
<scopt.version>4.0.1</scopt.version>
134134
<slf4j.version>1.7.35</slf4j.version>
135135
<log4j.version>2.17.1</log4j.version>
136-
<spark.version>3.1.2</spark.version>
136+
<!-- If you change the minor version of Spark, don't forget to change the default 'delta.version' -->
137+
<spark.version>3.2.1</spark.version>
137138
<spark.archive.name>spark-${spark.version}-bin-hadoop${hadoop.binary.version}.tgz</spark.archive.name>
138139
<spark.archive.mirror>https://archive.apache.org/dist/spark/spark-${spark.version}</spark.archive.mirror>
139140
<spark.archive.download.skip>false</spark.archive.download.skip>

0 commit comments

Comments
 (0)