Repository: spark Updated Branches: refs/heads/branch-1.2 c573af4f1 -> a7e99ede4
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 (cherry picked from commit c586b45dd25b50be7f195df2ce91b307e1ed71a9) Signed-off-by: Andrew Or <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/a7e99ede Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/a7e99ede Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/a7e99ede Branch: refs/heads/branch-1.2 Commit: a7e99ede42aa7e6c832fe214f3ee3c9b7ec281b0 Parents: c573af4 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:41 2015 -0800 ---------------------------------------------------------------------- docs/configuration.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/a7e99ede/docs/configuration.md ---------------------------------------------------------------------- diff --git a/docs/configuration.md b/docs/configuration.md index 6e9a62c..ddcdf3f 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -191,6 +191,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]
