aboutsummaryrefslogtreecommitdiff
path: root/docs/configuration.md
diff options
context:
space:
mode:
authorMarcelo Vanzin <vanzin@cloudera.com>2016-06-07 09:28:39 -0700
committerMarcelo Vanzin <vanzin@cloudera.com>2016-06-07 09:28:39 -0700
commit200f01c8fb15680b5630fbd122d44f9b1d096e02 (patch)
treef94109d1f8ded155ee5af0ca094481d9ecc93856 /docs/configuration.md
parent3ec4461c46e2959f4c640df0292cfcacfe0f727f (diff)
downloadspark-200f01c8fb15680b5630fbd122d44f9b1d096e02.tar.gz
spark-200f01c8fb15680b5630fbd122d44f9b1d096e02.tar.bz2
spark-200f01c8fb15680b5630fbd122d44f9b1d096e02.zip
[SPARK-15760][DOCS] Add documentation for package-related configs.
While there, also document spark.files and spark.jars. Text is the same as the spark-submit help text with some minor adjustments. Author: Marcelo Vanzin <vanzin@cloudera.com> Closes #13502 from vanzin/SPARK-15760.
Diffstat (limited to 'docs/configuration.md')
-rw-r--r--docs/configuration.md47
1 files changed, 47 insertions, 0 deletions
diff --git a/docs/configuration.md b/docs/configuration.md
index d6471a8cc7..32c3a92660 100644
--- a/docs/configuration.md
+++ b/docs/configuration.md
@@ -380,6 +380,53 @@ Apart from these, the following properties are also available, and may be useful
from JVM to Python worker for every task.
</td>
</tr>
+<tr>
+ <td><code>spark.files</code></td>
+ <td></td>
+ <td>
+ Comma-separated list of files to be placed in the working directory of each executor.
+ </td>
+</tr>
+<tr>
+ <td><code>spark.submit.pyFiles</code></td>
+ <td></td>
+ <td>
+ Comma-separated list of .zip, .egg, or .py files to place on the PYTHONPATH for Python apps.
+ </td>
+</tr>
+<tr>
+ <td><code>spark.jars</code></td>
+ <td></td>
+ <td>
+ Comma-separated list of local jars to include on the driver and executor classpaths.
+ </td>
+</tr>
+<tr>
+ <td><code>spark.jars.packages</code></td>
+ <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.
+ </td>
+</tr>
+<tr>
+ <td><code>spark.jars.excludes</code></td>
+ <td></td>
+ <td>
+ Comma-separated list of groupId:artifactId, to exclude while resolving the dependencies
+ provided in <code>spark.jars.packages</code> to avoid dependency conflicts.
+ </td>
+</tr>
+<tr>
+ <td><code>spark.jars.ivy</code></td>
+ <td></td>
+ <td>
+ Comma-separated list of additional remote repositories to search for the coordinates given
+ with <code>spark.jars.packages</code>.
+ </td>
+</tr>
</table>
#### Shuffle Behavior