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
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ private[ui] class JobProgressTab(parent: SparkUI) extends WebUITab(parent, "stag
val live = parent.live
val sc = parent.sc
val conf = if (live) sc.conf else new SparkConf
val killEnabled = conf.getBoolean("spark.ui.killEnabled", true)
val killEnabled = conf.getBoolean("spark.ui.killEnabled", false)
val listener = new JobProgressListener(conf)

attachPage(new JobProgressPage(this))
Expand Down
2 changes: 1 addition & 1 deletion docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ Apart from these, the following properties are also available, and may be useful
</tr>
<tr>
<td>spark.ui.killEnabled</td>
<td>true</td>
<td>false</td>
<td>
Allows stages and corresponding jobs to be killed from the web ui.
</td>
Expand Down