Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/running-on-kubernetes.md
Original file line number Diff line number Diff line change
Expand Up @@ -1017,7 +1017,7 @@ See the [configuration page](configuration.html) for information on Spark config
</tr>
<tr>
<td><code>spark.kubernetes.report.interval</code></td>
<td><code>1s</code></td>
<td><code>10s</code></td>
<td>
Interval between reports of the current Spark job status in cluster mode.
</td>
Expand Down
2 changes: 1 addition & 1 deletion docs/running-on-yarn.md
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ To use a custom metrics.properties for the application master and executors, upd
</tr>
<tr>
<td><code>spark.yarn.report.interval</code></td>
<td><code>1s</code></td>
<td><code>10s</code></td>
<td>
Interval between reports of the current Spark job status in cluster mode.
</td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ private[spark] object Config extends Logging {
.version("2.3.0")
.timeConf(TimeUnit.MILLISECONDS)
.checkValue(interval => interval > 0, s"Logging interval must be a positive time value.")
.createWithDefaultString("1s")
.createWithDefaultString("10s")

val KUBERNETES_EXECUTOR_ENABLE_API_POLLING =
ConfigBuilder("spark.kubernetes.executor.enableApiPolling")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ package object config extends Logging {
.doc("Interval between reports of the current app status.")
.version("0.9.0")
.timeConf(TimeUnit.MILLISECONDS)
.createWithDefaultString("1s")
.createWithDefaultString("10s")

private[spark] val REPORT_LOG_FREQUENCY = {
ConfigBuilder("spark.yarn.report.loggingFrequency")
Expand Down