Skip to content
Closed
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
6 changes: 3 additions & 3 deletions docs/running-on-mesos.md
Original file line number Diff line number Diff line change
Expand Up @@ -224,11 +224,11 @@ See the [configuration page](configuration.html) for information on Spark config
<td><code>spark.mesos.executor.memoryOverhead</code></td>
<td>executor memory * 0.10, with minimum of 384</td>
<td>
This value is an additive for <code>spark.executor.memory</code>, specified in MiB,
This value is an additive for <code>spark.executor.memory</code>, specified in MB,
which is used to calculate the total Mesos task memory. A value of <code>384</code>
implies a 384MiB overhead. Additionally, there is a hard-coded 7% minimum
implies a 384MB overhead. Additionally, there is a hard-coded 10% minimum
overhead. The final overhead will be the larger of either
`spark.mesos.executor.memoryOverhead` or 7% of `spark.executor.memory`.
`spark.mesos.executor.memoryOverhead` or 10% of `spark.executor.memory`.
</td>
</tr>
</table>
Expand Down