Skip to content

Commit d54a8c0

Browse files
razvanNickLarsenNZ
andauthored
chore: support for Spark 3.5.6 (#580)
* chore: bump spark version to 3.5.6 * update changelog * Update docs/modules/spark-k8s/partials/supported-versions.adoc Co-authored-by: Nick <[email protected]> * fix image name * update test artefact * fix md lint --------- Co-authored-by: Nick <[email protected]>
1 parent 998e9d5 commit d54a8c0

23 files changed

+36
-32
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ All notable changes to this project will be documented in this file.
1212
- Use `--file-log-rotation-period` (or `FILE_LOG_ROTATION_PERIOD`) to configure the frequency of rotation.
1313
- Use `--console-log-format` (or `CONSOLE_LOG_FORMAT`) to set the format to `plain` (default) or `json`.
1414
- Expose history and connect services via listener classes ([#562]).
15+
- Support for Spark 3.5.6 ([#580]).
1516

1617
### Changed
1718

@@ -56,6 +57,7 @@ All notable changes to this project will be documented in this file.
5657
[#572]: https://github.com/stackabletech/spark-k8s-operator/pull/572
5758
[#573]: https://github.com/stackabletech/spark-k8s-operator/pull/573
5859
[#574]: https://github.com/stackabletech/spark-k8s-operator/pull/574
60+
[#580]: https://github.com/stackabletech/spark-k8s-operator/pull/580
5961
[#575]: https://github.com/stackabletech/spark-k8s-operator/pull/575
6062

6163
## [25.3.0] - 2025-03-21

docs/modules/spark-k8s/examples/example-history-app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: spark-pi-s3-1
66
spec:
77
sparkImage:
8-
productVersion: 3.5.5
8+
productVersion: 3.5.6
99
pullPolicy: IfNotPresent
1010
mode: cluster
1111
mainClass: org.apache.spark.examples.SparkPi

docs/modules/spark-k8s/examples/example-history-server.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: spark-history
66
spec:
77
image:
8-
productVersion: 3.5.5
8+
productVersion: 3.5.6
99
logFileDirectory: # <1>
1010
s3:
1111
prefix: eventlogs/ # <2>

docs/modules/spark-k8s/examples/example-spark-connect.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: spark-connect # <1>
66
spec:
77
image:
8-
productVersion: "3.5.5" # <2>
8+
productVersion: "3.5.6" # <2>
99
pullPolicy: IfNotPresent
1010
args:
1111
- "--package org.apache.iceberg:iceberg-spark-runtime-3.5_2.12:1.8.1" # <3>

docs/modules/spark-k8s/examples/example-sparkapp-configmap.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
namespace: default
77
spec:
88
sparkImage:
9-
productVersion: 3.5.5
9+
productVersion: 3.5.6
1010
mode: cluster
1111
mainApplicationFile: s3a://stackable-spark-k8s-jars/jobs/ny-tlc-report-1.1.0.jar # <3>
1212
mainClass: tech.stackable.demo.spark.NYTLCReport

docs/modules/spark-k8s/examples/example-sparkapp-image.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
spec:
88
image: oci.stackable.tech/stackable/ny-tlc-report:0.2.0 # <1>
99
sparkImage:
10-
productVersion: 3.5.5
10+
productVersion: 3.5.6
1111
mode: cluster
1212
mainApplicationFile: local:///stackable/spark/jobs/ny_tlc_report.py # <2>
1313
args:

docs/modules/spark-k8s/examples/example-sparkapp-pvc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
namespace: default
77
spec:
88
sparkImage:
9-
productVersion: 3.5.5
9+
productVersion: 3.5.6
1010
mode: cluster
1111
mainApplicationFile: s3a://stackable-spark-k8s-jars/jobs/ny-tlc-report-1.0-SNAPSHOT.jar # <1>
1212
mainClass: org.example.App # <2>

docs/modules/spark-k8s/examples/example-sparkapp-s3-private.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: example-sparkapp-s3-private
66
spec:
77
sparkImage:
8-
productVersion: 3.5.5
8+
productVersion: 3.5.6
99
mode: cluster
1010
mainApplicationFile: s3a://my-bucket/spark-examples.jar # <1>
1111
mainClass: org.apache.spark.examples.SparkPi # <2>

docs/modules/spark-k8s/examples/example-sparkapp-streaming.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
namespace: default
77
spec:
88
sparkImage:
9-
productVersion: 3.5.5
9+
productVersion: 3.5.6
1010
mode: cluster
1111
mainApplicationFile: local:///stackable/spark/examples/src/main/python/streaming/hdfs_wordcount.py
1212
args:

docs/modules/spark-k8s/examples/getting_started/getting_started.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ metadata:
5656
namespace: default
5757
spec:
5858
sparkImage:
59-
productVersion: 3.5.5
59+
productVersion: 3.5.6
6060
mode: cluster
6161
mainApplicationFile: local:///stackable/spark/examples/src/main/python/pi.py
6262
driver:

0 commit comments

Comments
 (0)