HyukjinKwon commented on code in PR #44721:
URL: https://github.com/apache/spark/pull/44721#discussion_r1451822330
##########
core/src/main/scala/org/apache/spark/internal/config/package.scala:
##########
@@ -2025,6 +2025,15 @@ package object config {
.checkValue(v => v >= 0, "The threshold should be non-negative.")
.createWithDefault(1L * 1024 * 1024)
+ private[spark] val CLEAN_BROADCAST_AFTER_EXECUTION_END_ENABLED =
+ ConfigBuilder("spark.broadcast.cleanAfterExecutionEnd.enabled")
+ .doc("Whether to enable clean broadcast data after sql execution. If
enabled, " +
Review Comment:
nit:
```suggestion
.doc("Whether to enable clean broadcast data after SQL execution. If
enabled, " +
```
BTW, SQL configurations should go to `SQLConf`. If this is a static conf, it
should go to `StaticSQLConf`
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]