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
17 changes: 14 additions & 3 deletions docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -406,9 +406,10 @@ Apart from these, the following properties are also available, and may be useful
<td></td>
<td>
Comma-separated list of maven coordinates of jars to include on the driver and executor
classpaths. Will search the local maven repo, then maven central and any additional remote
repositories given by <code>spark.jars.ivy</code>. The format for the coordinates should be
groupId:artifactId:version.
classpaths. If <code>spark.ivy.settings</code> is given artifacts will be resolved according
to the configuration in the file, otherwise artifacts will be searched for in the local maven repo,
then maven central and finally any additional remote repositories given by <code>spark.jars.ivy</code>.
The format for the coordinates should be groupId:artifactId:version.
</td>
</tr>
<tr>
Expand All @@ -427,6 +428,16 @@ Apart from these, the following properties are also available, and may be useful
with <code>spark.jars.packages</code>.
</td>
</tr>
<tr>
<td><code>spark.ivy.settings</code></td>
<td></td>
<td>
Path to an Ivy settings file to customize resolution of jars specified using <code>spark.jars.packages</code>.
Will override <code>spark.jars.ivy</code>, so they shouldn't be used together. Useful for allowing Spark to
resolve artifacts from behind a firewall e.g. via an in-house artifact server like Artifactory. Details on
the settings file format can be found at http://ant.apache.org/ivy/history/latest-milestone/settings.html
</td>
</tr>
<tr>
<td><code>spark.pyspark.driver.python</code></td>
<td></td>
Expand Down