Skip to content
Closed
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
2 changes: 1 addition & 1 deletion examples/pi-on-yunikorn.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ metadata:
name: pi-on-yunikorn
spec:
mainClass: "org.apache.spark.examples.SparkPi"
jars: "local:///opt/spark/examples/jars/spark-examples_2.13-4.0.0-preview1.jar"
jars: "local:///opt/spark/examples/jars/spark-examples.jar"
driverArgs: [ "20000" ]
sparkConf:
spark.dynamicAllocation.enabled: "true"
Expand Down
2 changes: 1 addition & 1 deletion examples/pi-scala.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ metadata:
name: pi-scala
spec:
mainClass: "org.apache.spark.examples.SparkPi"
jars: "local:///opt/spark/examples/jars/spark-examples_2.13-4.0.0-preview1.jar"
jars: "local:///opt/spark/examples/jars/spark-examples.jar"
sparkConf:
spark.dynamicAllocation.enabled: "true"
spark.dynamicAllocation.shuffleTracking.enabled: "true"
Expand Down
2 changes: 1 addition & 1 deletion examples/pi-with-one-pod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ metadata:
name: pi-with-one-pod
spec:
mainClass: "org.apache.spark.examples.SparkPi"
jars: "local:///opt/spark/examples/jars/spark-examples_2.13-4.0.0-preview1.jar"
jars: "local:///opt/spark/examples/jars/spark-examples.jar"
sparkConf:
spark.kubernetes.driver.master: "local[10]"
spark.kubernetes.driver.request.cores: "5"
Expand Down
2 changes: 1 addition & 1 deletion examples/pi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ metadata:
name: pi
spec:
mainClass: "org.apache.spark.examples.SparkPi"
jars: "local:///opt/spark/examples/jars/spark-examples_2.13-4.0.0-preview1.jar"
jars: "local:///opt/spark/examples/jars/spark-examples.jar"
sparkConf:
spark.dynamicAllocation.enabled: "true"
spark.dynamicAllocation.shuffleTracking.enabled: "true"
Expand Down
2 changes: 1 addition & 1 deletion examples/sql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ metadata:
name: sql
spec:
mainClass: "org.apache.spark.examples.sql.JavaSparkSQLCli"
jars: "local:///opt/spark/examples/jars/spark-examples_2.13-4.0.0-preview1.jar"
jars: "local:///opt/spark/examples/jars/spark-examples.jar"
driverArgs: [ "SHOW DATABASES", "SHOW TABLES", "SELECT VERSION()" ]
sparkConf:
spark.dynamicAllocation.enabled: "true"
Expand Down
2 changes: 1 addition & 1 deletion examples/submit-pi-to-prod.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ curl -XPOST http://localhost:6066/v1/submissions/create \
"spark.executor.memory": "1g",
"spark.cores.max": "2",
"spark.ui.reverseProxy": "true",
"spark.jars": "local:///opt/spark/examples/jars/spark-examples_2.13-4.0.0-preview1.jar"
"spark.jars": "local:///opt/spark/examples/jars/spark-examples.jar"
},
"clientSparkVersion": "",
"mainClass": "org.apache.spark.examples.SparkPi",
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/state-transition/spark-example-succeeded.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ metadata:
namespace: default
spec:
mainClass: "org.apache.spark.examples.SparkPi"
jars: "local:///opt/spark/examples/jars/spark-examples_2.13-4.0.0-preview1.jar"
jars: "local:///opt/spark/examples/jars/spark-examples.jar"
sparkConf:
spark.executor.instances: "1"
spark.kubernetes.container.image: "apache/spark:4.0.0-preview1-scala2.13-java17-ubuntu"
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/watched-namespaces/spark-example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ metadata:
namespace: ($SPARK_APP_NAMESPACE)
spec:
mainClass: "org.apache.spark.examples.SparkPi"
jars: "local:///opt/spark/examples/jars/spark-examples_2.13-4.0.0-preview1.jar"
jars: "local:///opt/spark/examples/jars/spark-examples.jar"
sparkConf:
spark.executor.instances: "1"
spark.kubernetes.container.image: "apache/spark:4.0.0-preview1-scala2.13-java17-ubuntu"
Expand Down