Skip to content

Commit e7870b7

Browse files
authored
feat: Support Spark 3.5.1 (#373)
* feat: Support Spark 3.5.1 * changelog * changelog * changelog
1 parent bffc78d commit e7870b7

26 files changed

+26
-22
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ All notable changes to this project will be documented in this file.
77
### Added
88

99
- Helm: support labels in values.yaml ([#344]).
10+
- Support version `3.5.1` ([#373]).
1011
- Support version `3.4.2` ([#357]).
1112
- `spec.job.config.volumeMounts` property to easily mount volumes on the job pod ([#359])
1213

@@ -31,6 +32,7 @@ All notable changes to this project will be documented in this file.
3132
[#355]: https://github.com/stackabletech/spark-k8s-operator/pull/355
3233
[#357]: https://github.com/stackabletech/spark-k8s-operator/pull/357
3334
[#359]: https://github.com/stackabletech/spark-k8s-operator/pull/359
35+
[#373]: https://github.com/stackabletech/spark-k8s-operator/pull/373
3436

3537
## [23.11.0] - 2023-11-24
3638

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: spark-pi
66
spec:
77
sparkImage:
8-
productVersion: 3.5.0 # <1>
8+
productVersion: 3.5.1 # <1>
99
mode: cluster
1010
mainClass: org.apache.spark.examples.SparkPi
1111
mainApplicationFile: /stackable/spark/examples/jars/spark-examples.jar # <2>

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.0
8+
productVersion: 3.5.1
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.0
8+
productVersion: 3.5.1
99
logFileDirectory: # <1>
1010
s3:
1111
prefix: eventlogs/ # <2>

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.0
9+
productVersion: 3.5.1
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-external-dependencies.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.0
9+
productVersion: 3.5.1
1010
mode: cluster
1111
mainApplicationFile: s3a://stackable-spark-k8s-jars/jobs/ny_tlc_report.py # <1>
1212
args:

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: docker.stackable.tech/stackable/ny-tlc-report:0.1.0 # <1>
99
sparkImage:
10-
productVersion: 3.5.0
10+
productVersion: 3.5.1
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.0
9+
productVersion: 3.5.1
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.0
8+
productVersion: 3.5.1
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.0
9+
productVersion: 3.5.1
1010
mode: cluster
1111
mainApplicationFile: local:///stackable/spark/examples/src/main/python/streaming/hdfs_wordcount.py
1212
args:

0 commit comments

Comments
 (0)