We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81112e4 commit e833330Copy full SHA for e833330
core/src/main/scala/org/apache/spark/SparkConf.scala
@@ -240,6 +240,8 @@ class SparkConf(loadDefaults: Boolean) extends Cloneable with Logging {
240
/** Checks for illegal or deprecated config settings. Throws an exception for the former. Not
241
* idempotent - may mutate this conf object to convert deprecated settings to supported ones. */
242
private[spark] def validateSettings() {
243
+ logInfo(s"Spark Version: ${SPARK_VERSION}")
244
+
245
if (settings.contains("spark.local.dir")) {
246
val msg = "In Spark 1.0 and later spark.local.dir will be overridden by the value set by " +
247
"the cluster manager (via SPARK_LOCAL_DIRS in mesos/standalone and LOCAL_DIRS in YARN)."
0 commit comments