We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9c264f commit 16ae776Copy full SHA for 16ae776
1 file changed
docs/configuration.md
@@ -2,11 +2,17 @@
2
layout: global
3
title: Spark Configuration
4
---
5
-
6
* This will become a table of contents (this text will be scraped).
7
{:toc}
8
9
-Spark provides several locations to configure the system:
+Spark provides three locations to configure the system:
+
10
+* [Spark properties](#spark-properties) control most application parameters and can be set by passing
11
+ a [SparkConf](api/core/index.html#org.apache.spark.SparkConf) object to SparkContext, or through Java
12
+ system properties.
13
+* [Environment variables](#environment-variables) can be used to set per-machine settings, such as
14
+ the IP address, through the `conf/spark-env.sh` script on each node.
15
+* [Logging](#configuring-logging) can be configured through `log4j.properties`.
16
17
# Spark Properties
18
0 commit comments