Skip to content
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

build: bump spark version to 3.3.4, 3.4.4, 3.5.4 for spark-3.3, spark-3.4 and spark-3.5 #1243

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/actions/setup-spark-builder/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ inputs:
required: true
default: '3.4'
spark-version:
description: 'The Apache Spark version (e.g., 3.4.3) to build'
description: 'The Apache Spark version (e.g., 3.4.4) to build'
required: true
default: '3.4.3'
default: '3.4.4'
comet-version:
description: 'The Comet version to use for Spark'
required: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/spark_sql_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
matrix:
os: [ubuntu-24.04]
java-version: [11]
spark-version: [{short: '3.4', full: '3.4.3'}, {short: '3.5', full: '3.5.1'}]
spark-version: [{short: '3.4', full: '3.4.4'}, {short: '3.5', full: '3.5.4'}]
module:
- {name: "catalyst", args1: "catalyst/test", args2: ""}
- {name: "sql/core-1", args1: "", args2: sql/testOnly * -- -l org.apache.spark.tags.ExtendedSQLTest -l org.apache.spark.tags.SlowSQLTest}
Expand Down
4 changes: 2 additions & 2 deletions kube/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# limitations under the License.
#

FROM apache/spark:3.4.3 AS builder
FROM apache/spark:3.4.4 AS builder

USER root

Expand Down Expand Up @@ -59,7 +59,7 @@ COPY pom.xml /comet/pom.xml
RUN cd /comet \
&& JAVA_HOME=$(readlink -f $(which javac) | sed "s/\/bin\/javac//") make release-nogit PROFILES="-Pspark-$SPARK_VERSION -Pscala-$SCALA_VERSION"

FROM apache/spark:3.4.3
FROM apache/spark:3.4.4
ENV SPARK_VERSION=3.4
ENV SCALA_VERSION=2.12
USER root
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ under the License.
<scala.plugin.version>4.7.2</scala.plugin.version>
<scalatest.version>3.2.9</scalatest.version>
<scalatest-maven-plugin.version>2.0.2</scalatest-maven-plugin.version>
<spark.version>3.4.3</spark.version>
<spark.version>3.4.4</spark.version>
<spark.version.short>3.4</spark.version.short>
<spark.maven.scope>provided</spark.maven.scope>
<protobuf.version>3.21.12</protobuf.version>
Expand Down Expand Up @@ -537,7 +537,7 @@ under the License.
<id>spark-3.3</id>
<properties>
<scala.version>2.12.15</scala.version>
<spark.version>3.3.2</spark.version>
<spark.version>3.3.4</spark.version>
<spark.version.short>3.3</spark.version.short>
<parquet.version>1.12.0</parquet.version>
<slf4j.version>1.7.32</slf4j.version>
Expand All @@ -559,7 +559,7 @@ under the License.
<id>spark-3.5</id>
<properties>
<scala.version>2.12.18</scala.version>
<spark.version>3.5.1</spark.version>
<spark.version>3.5.4</spark.version>
<spark.version.short>3.5</spark.version.short>
<parquet.version>1.13.1</parquet.version>
<slf4j.version>2.0.7</slf4j.version>
Expand Down
Loading