Skip to content

Commit 83c2b32

Browse files
author
KaiXinXiaoLei
committed
change config option
change config option from "spark.rddDebug.enable" to "spark.logLineage"
1 parent adcb14f commit 83c2b32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/scala/org/apache/spark/SparkContext.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1328,7 +1328,7 @@ class SparkContext(config: SparkConf) extends Logging with ExecutorAllocationCli
13281328
val callSite = getCallSite
13291329
val cleanedFunc = clean(func)
13301330
logInfo("Starting job: " + callSite.shortForm)
1331-
if (conf.getBoolean("spark.rddDebug.enable", false)) {
1331+
if (conf.getBoolean("spark.logLineage", false)) {
13321332
logInfo("RDD.toDebugString:\n" + rdd.toDebugString)
13331333
}
13341334
dagScheduler.runJob(rdd, cleanedFunc, partitions, callSite, allowLocal,

0 commit comments

Comments
 (0)