Migration Guide: Spark Core
- Upgrading from Core 3.5 to 4.0
- Upgrading from Core 3.4 to 3.5
- Upgrading from Core 3.3 to 3.4
- Upgrading from Core 3.2 to 3.3
- Upgrading from Core 3.1 to 3.2
- Upgrading from Core 3.0 to 3.1
- Upgrading from Core 2.4 to 3.0
Upgrading from Core 3.5 to 4.0
-
Since Spark 4.0, Spark migrated all its internal reference of servlet API from
javax
tojakarta
-
Since Spark 4.0, Spark will roll event logs to archive them incrementally. To restore the behavior before Spark 4.0, you can set
spark.eventLog.rolling.enabled
tofalse
. -
Since Spark 4.0, Spark will compress event logs. To restore the behavior before Spark 4.0, you can set
spark.eventLog.compress
tofalse
. -
Since Spark 4.0, Spark workers will clean up worker and stopped application directories periodically. To restore the behavior before Spark 4.0, you can set
spark.worker.cleanup.enabled
tofalse
. -
Since Spark 4.0,
spark.shuffle.service.db.backend
is set toROCKSDB
by default which means Spark will use RocksDB store for shuffle service. To restore the behavior before Spark 4.0, you can setspark.shuffle.service.db.backend
toLEVELDB
. -
In Spark 4.0, support for Apache Mesos as a resource manager was removed.
-
Since Spark 4.0, Spark uses
ReadWriteOncePod
instead ofReadWriteOnce
access mode in persistence volume claims. To restore the legacy behavior, you can setspark.kubernetes.legacy.useReadWriteOnceAccessMode
totrue
. -
Since Spark 4.0, Spark reports its executor pod status by checking all containers of that pod. To restore the legacy behavior, you can set
spark.kubernetes.executor.checkAllContainers
tofalse
. -
Since Spark 4.0, Spark uses
~/.ivy2.5.2
as Ivy user directory by default to isolate the existing systems from Apache Ivy’s incompatibility. To restore the legacy behavior, you can setspark.jars.ivy
to~/.ivy2
. -
Since Spark 4.0, Spark uses the external shuffle service for deleting shuffle blocks for deallocated executors when the shuffle is no longer needed. To restore the legacy behavior, you can set
spark.shuffle.service.removeShuffle
tofalse
. - Starting with Spark 4.0, the default logging format for
spark-submit
has changed from plain text to JSON lines to improve log analysis. If you prefer plain text logs, you have two options:- Set the Spark configuration
spark.log.structuredLogging.enabled
tofalse
. For example, you can useJDK_JAVA_OPTIONS=-Dspark.log.structuredLogging.enabled=false
. - Use a custom log4j configuration file, such as renaming the template file
conf/log4j2.properties.pattern-layout-template
toconf/log4j2.properties
.
- Set the Spark configuration
-
Since Spark 4.0, the MDC (Mapped Diagnostic Context) key for Spark task names in Spark logs has been changed from
mdc.taskName
totask_name
. To use the keymdc.taskName
, you can setspark.log.legacyTaskNameMdc.enabled
totrue
. -
Since Spark 4.0, Spark performs speculative executions less aggressively with
spark.speculation.multiplier=3
andspark.speculation.quantile=0.9
. To restore the legacy behavior, you can setspark.speculation.multiplier=1.5
andspark.speculation.quantile=0.75
. - Since Spark 4.0,
spark.shuffle.unsafe.file.output.buffer
is deprecated though still works. Usespark.shuffle.localDisk.file.output.buffer
instead.
Upgrading from Core 3.4 to 3.5
-
Since Spark 3.5,
spark.yarn.executor.failuresValidityInterval
is deprecated. Usespark.executor.failuresValidityInterval
instead. -
Since Spark 3.5,
spark.yarn.max.executor.failures
is deprecated. Usespark.executor.maxNumFailures
instead.
Upgrading from Core 3.3 to 3.4
-
Since Spark 3.4, Spark driver will own
PersistentVolumnClaim
s and try to reuse if they are not assigned to live executors. To restore the behavior before Spark 3.4, you can setspark.kubernetes.driver.ownPersistentVolumeClaim
tofalse
andspark.kubernetes.driver.reusePersistentVolumeClaim
tofalse
. -
Since Spark 3.4, Spark driver will track shuffle data when dynamic allocation is enabled without shuffle service. To restore the behavior before Spark 3.4, you can set
spark.dynamicAllocation.shuffleTracking.enabled
tofalse
. -
Since Spark 3.4, Spark will try to decommission cached RDD and shuffle blocks if both
spark.decommission.enabled
andspark.storage.decommission.enabled
are true. To restore the behavior before Spark 3.4, you can set bothspark.storage.decommission.rddBlocks.enabled
andspark.storage.decommission.shuffleBlocks.enabled
tofalse
. -
Since Spark 3.4, Spark will use RocksDB store if
spark.history.store.hybridStore.enabled
is true. To restore the behavior before Spark 3.4, you can setspark.history.store.hybridStore.diskBackend
toLEVELDB
.
Upgrading from Core 3.2 to 3.3
- Since Spark 3.3, Spark migrates its log4j dependency from 1.x to 2.x because log4j 1.x has reached end of life and is no longer supported by the community. Vulnerabilities reported after August 2015 against log4j 1.x were not checked and will not be fixed. Users should rewrite original log4j properties files using log4j2 syntax (XML, JSON, YAML, or properties format). Spark rewrites the
conf/log4j.properties.template
which is included in Spark distribution, toconf/log4j2.properties.template
with log4j2 properties format.
Upgrading from Core 3.1 to 3.2
-
Since Spark 3.2,
spark.scheduler.allocation.file
supports read remote file using hadoop filesystem which means if the path has no scheme Spark will respect hadoop configuration to read it. To restore the behavior before Spark 3.2, you can specify the local scheme forspark.scheduler.allocation.file
e.g.file:///path/to/file
. -
Since Spark 3.2,
spark.hadoopRDD.ignoreEmptySplits
is set totrue
by default which means Spark will not create empty partitions for empty input splits. To restore the behavior before Spark 3.2, you can setspark.hadoopRDD.ignoreEmptySplits
tofalse
. -
Since Spark 3.2,
spark.eventLog.compression.codec
is set tozstd
by default which means Spark will not fallback to usespark.io.compression.codec
anymore. -
Since Spark 3.2,
spark.storage.replication.proactive
is enabled by default which means Spark tries to replenish in case of the loss of cached RDD block replicas due to executor failures. To restore the behavior before Spark 3.2, you can setspark.storage.replication.proactive
tofalse
. -
In Spark 3.2,
spark.launcher.childConectionTimeout
is deprecated (typo) though still works. Usespark.launcher.childConnectionTimeout
instead. -
In Spark 3.2, support for Apache Mesos as a resource manager is deprecated and will be removed in a future version.
-
In Spark 3.2, Spark will delete K8s driver service resource when the application terminates by itself. To restore the behavior before Spark 3.2, you can set
spark.kubernetes.driver.service.deleteOnTermination
tofalse
.
Upgrading from Core 3.0 to 3.1
-
In Spark 3.0 and below,
SparkContext
can be created in executors. Since Spark 3.1, an exception will be thrown when creatingSparkContext
in executors. You can allow it by setting the configurationspark.executor.allowSparkContext
when creatingSparkContext
in executors. -
In Spark 3.0 and below, Spark propagated the Hadoop classpath from
yarn.application.classpath
andmapreduce.application.classpath
into the Spark application submitted to YARN when Spark distribution is with the built-in Hadoop. Since Spark 3.1, it does not propagate anymore when the Spark distribution is with the built-in Hadoop in order to prevent the failure from the different transitive dependencies picked up from the Hadoop cluster such as Guava and Jackson. To restore the behavior before Spark 3.1, you can setspark.yarn.populateHadoopClasspath
totrue
.
Upgrading from Core 2.4 to 3.0
-
The
org.apache.spark.ExecutorPlugin
interface and related configuration has been replaced withorg.apache.spark.api.plugin.SparkPlugin
, which adds new functionality. Plugins using the old interface must be modified to extend the new interfaces. Check the Monitoring guide for more details. -
Deprecated method
TaskContext.isRunningLocally
has been removed. Local execution was removed and it always has returnedfalse
. -
Deprecated method
shuffleBytesWritten
,shuffleWriteTime
andshuffleRecordsWritten
inShuffleWriteMetrics
have been removed. Instead, usebytesWritten
,writeTime
andrecordsWritten
respectively. -
Deprecated method
AccumulableInfo.apply
have been removed because creatingAccumulableInfo
is disallowed. -
Deprecated accumulator v1 APIs have been removed and please use v2 APIs instead.
-
Event log file will be written as UTF-8 encoding, and Spark History Server will replay event log files as UTF-8 encoding. Previously Spark wrote the event log file as default charset of driver JVM process, so Spark History Server of Spark 2.x is needed to read the old event log files in case of incompatible encoding.
-
A new protocol for fetching shuffle blocks is used. It’s recommended that external shuffle services be upgraded when running Spark 3.0 apps. You can still use old external shuffle services by setting the configuration
spark.shuffle.useOldFetchProtocol
totrue
. Otherwise, Spark may run into errors with messages likeIllegalArgumentException: Unexpected message type: <number>
. -
SPARK_WORKER_INSTANCES
is deprecated in Standalone mode. It’s recommended to launch multiple executors in one worker and launch one worker per node instead of launching multiple workers per node and launching one executor per worker.