Repository: spark Updated Branches: refs/heads/master 614323406 -> 31ec6a871
[SPARK-9327] [DOCS] Fix documentation about classpath config options. Author: Marcelo Vanzin <[email protected]> Closes #7651 from vanzin/SPARK-9327 and squashes the following commits: 2923e23 [Marcelo Vanzin] [SPARK-9327] [docs] Fix documentation about classpath config options. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/31ec6a87 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/31ec6a87 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/31ec6a87 Branch: refs/heads/master Commit: 31ec6a871eebd2377961c5195f9c2bff3a899fba Parents: 6143234 Author: Marcelo Vanzin <[email protected]> Authored: Tue Jul 28 11:48:56 2015 -0700 Committer: Marcelo Vanzin <[email protected]> Committed: Tue Jul 28 11:48:56 2015 -0700 ---------------------------------------------------------------------- docs/configuration.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/31ec6a87/docs/configuration.md ---------------------------------------------------------------------- diff --git a/docs/configuration.md b/docs/configuration.md index 200f3cd..fd23613 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -203,7 +203,7 @@ Apart from these, the following properties are also available, and may be useful <td><code>spark.driver.extraClassPath</code></td> <td>(none)</td> <td> - Extra classpath entries to append to the classpath of the driver. + Extra classpath entries to prepend to the classpath of the driver. <br /><em>Note:</em> In client mode, this config must not be set through the <code>SparkConf</code> directly in your application, because the driver JVM has already started at that point. @@ -250,7 +250,7 @@ Apart from these, the following properties are also available, and may be useful <td><code>spark.executor.extraClassPath</code></td> <td>(none)</td> <td> - Extra classpath entries to append to the classpath of executors. This exists primarily for + Extra classpath entries to prepend to the classpath of executors. This exists primarily for backwards-compatibility with older versions of Spark. Users typically should not need to set this option. </td> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
