thompsonmax commented on a change in pull request #27378: [SPARK-30366][WebUI]
Show cached subplan of InMemoryTableScan and remove redundant subplans
URL: https://github.com/apache/spark/pull/27378#discussion_r374299528
##########
File path:
sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala
##########
@@ -991,6 +991,26 @@ object SQLConf {
.booleanConf
.createWithDefault(true)
+ val EXTENDED_EVENT_INFO = buildConf("spark.sql.extendedEventInfo")
+ .doc("Enables extended SQL event information, for example storing
additional information" +
+ " about certain operators such as InMemoryTableScan in SparkPlanInfo")
+ .booleanConf
+ .createWithDefault(true)
+
+ val UI_EXTENDED_INFO = buildConf("spark.sql.ui.extendedInfo")
+ .doc("Enables extended information in the SQL UI, for example displaying
additional" +
+ " information about the child operators of InMemoryTableScan. Note that
this" +
+ " setting depends on extended SQL event information " +
EXTENDED_EVENT_INFO.key +
Review comment:
Done.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]