Repository: spark Updated Branches: refs/heads/master aea25482c -> c586b45dd
SPARK-3852 [DOCS] Document spark.driver.extra* configs As per the JIRA. I copied the `spark.executor.extra*` text, but removed info that appears to be specific to the `executor` config and not `driver`. Author: Sean Owen <[email protected]> Closes #4185 from srowen/SPARK-3852 and squashes the following commits: f60a8a1 [Sean Owen] Document spark.driver.extra* configs Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/c586b45d Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/c586b45d Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/c586b45d Branch: refs/heads/master Commit: c586b45dd25b50be7f195df2ce91b307e1ed71a9 Parents: aea2548 Author: Sean Owen <[email protected]> Authored: Sun Jan 25 15:08:05 2015 -0800 Committer: Andrew Or <[email protected]> Committed: Sun Jan 25 15:08:35 2015 -0800 ---------------------------------------------------------------------- docs/configuration.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/c586b45d/docs/configuration.md ---------------------------------------------------------------------- diff --git a/docs/configuration.md b/docs/configuration.md index efbab40..7c5b6d0 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -198,6 +198,27 @@ Apart from these, the following properties are also available, and may be useful <table class="table"> <tr><th>Property Name</th><th>Default</th><th>Meaning</th></tr> <tr> + <td><code>spark.driver.extraJavaOptions</code></td> + <td>(none)</td> + <td> + A string of extra JVM options to pass to the driver. For instance, GC settings or other logging. + </td> +</tr> +<tr> + <td><code>spark.driver.extraClassPath</code></td> + <td>(none)</td> + <td> + Extra classpath entries to append to the classpath of the driver. + </td> +</tr> +<tr> + <td><code>spark.driver.extraLibraryPath</code></td> + <td>(none)</td> + <td> + Set a special library path to use when launching the driver JVM. + </td> +</tr> +<tr> <td><code>spark.executor.extraJavaOptions</code></td> <td>(none)</td> <td> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
