Skip to content

Commit e82bb56

Browse files
committed
fix: remove userClassPathFirst and extraClassPath properties.
1 parent 8e1f237 commit e82bb56

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

rust/crd/src/lib.rs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -483,11 +483,7 @@ impl SparkApplication {
483483
format!("--conf spark.kubernetes.executor.container.image={}", spark_image.to_string()),
484484
format!("--conf spark.kubernetes.authenticate.driver.serviceAccountName={}", serviceaccount_name),
485485
format!("--conf spark.driver.defaultJavaOptions=-Dlog4j.configurationFile={VOLUME_MOUNT_PATH_LOG_CONFIG}/{LOG4J2_CONFIG_FILE}"),
486-
format!("--conf spark.driver.extraClassPath=/stackable/spark/extra-jars/*"),
487-
"--conf spark.driver.userClassPathFirst=true".to_string(),
488-
format!("--conf spark.executor.defaultJavaOptions=-Dlog4j.configurationFile={VOLUME_MOUNT_PATH_LOG_CONFIG}/{LOG4J2_CONFIG_FILE}"),
489-
format!("--conf spark.executor.extraClassPath=/stackable/spark/extra-jars/*"),
490-
"--conf spark.executor.userClassPathFirst=true".to_string(),
486+
format!("--conf spark.executor.defaultJavaOptions=-Dlog4j.configurationFile={VOLUME_MOUNT_PATH_LOG_CONFIG}/{LOG4J2_CONFIG_FILE}")
491487
]);
492488

493489
// See https://spark.apache.org/docs/latest/running-on-kubernetes.html#dependency-management

0 commit comments

Comments
 (0)