beliefer commented on a change in pull request #27848: [SPARK-30911][CORE][DOC]
Add version information to the configuration of Status
URL: https://github.com/apache/spark/pull/27848#discussion_r389329466
##########
File path: core/src/main/scala/org/apache/spark/internal/config/Status.scala
##########
@@ -22,43 +22,52 @@ import java.util.concurrent.TimeUnit
private[spark] object Status {
val ASYNC_TRACKING_ENABLED =
ConfigBuilder("spark.appStateStore.asyncTracking.enable")
+ .version("2.3.0")
.booleanConf
.createWithDefault(true)
val LIVE_ENTITY_UPDATE_PERIOD = ConfigBuilder("spark.ui.liveUpdate.period")
+ .version("2.3.0")
.timeConf(TimeUnit.NANOSECONDS)
.createWithDefaultString("100ms")
val LIVE_ENTITY_UPDATE_MIN_FLUSH_PERIOD =
ConfigBuilder("spark.ui.liveUpdate.minFlushPeriod")
.doc("Minimum time elapsed before stale UI data is flushed. This avoids UI
staleness when " +
"incoming task events are not fired frequently.")
+ .version("2.4.2")
.timeConf(TimeUnit.NANOSECONDS)
.createWithDefaultString("1s")
val MAX_RETAINED_JOBS = ConfigBuilder("spark.ui.retainedJobs")
+ .version("1.2.0")
.intConf
.createWithDefault(1000)
val MAX_RETAINED_STAGES = ConfigBuilder("spark.ui.retainedStages")
+ .version("0.9.0")
Review comment:
No JIRA ID, commit ID:
112c0a1776bbc866a1026a9579c6f72f293414c4#diff-1f32bcb61f51133bd0959a4177a066a5
----------------------------------------------------------------
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]