20.md 66.5 KB
Newer Older
W
init  
wizardforcel 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
# Spark 配置

*   [Spark 属性](#spark-属性)
    *   [动态加载 Spark 属性](#动态加载-spark-属性)
    *   [查看 Spark 属性](#查看-spark-属性)
    *   [可用属性](#可用属性)
        *   [应用程序属性](#应用程序属性)
        *   [运行环境](#运行环境)
        *   [Shuffle Behavior (Shuffle 行为)](#shuffle-behavior-shuffle-行为)
        *   [Spark UI](#spark-ui)
        *   [Compression and Serialization (压缩和序列化)](#compression-and-serialization-压缩和序列化)
        *   [Memory Management (内存管理)](#memory-management-内存管理)
        *   [Execution Behavior (执行行为)](#execution-behavior-执行行为)
        *   [Networking (网络)](#networking-网络)
        *   [Scheduling (调度)](#scheduling-调度)
        *   [Dynamic Allocation (动态分配)](#dynamic-allocation-动态分配)
        *   [Security (安全)](#security-安全)
        *   [TLS / SSL](#tls--ssl)
        *   [Spark SQL](#spark-sql)
        *   [Spark Streaming](#spark-streaming)
        *   [SparkR](#sparkr)
        *   [GraphX](#graphx)
        *   [Deploy (部署)](#deploy-部署)
        *   [Cluster Managers (集群管理器)](#cluster-managers-集群管理器)
            *   [](#yarn)[YARN](running-on-yarn.html#configuration)
            *   [](#mesos)[Mesos](running-on-mesos.html#configuration)
            *   [](#standalone-mode)[Standalone Mode](spark-standalone.html#cluster-launch-scripts)
*   [Environment Variables (环境变量)](#environment-variables-环境变量)
*   [Configuring Logging (配置 Logging)](#configuring-logging-配置-logging)
*   [Overriding configuration directory (覆盖配置目录)](#overriding-configuration-directory-覆盖配置目录)
*   [Inheriting Hadoop Cluster Configuration (继承 Hadoop 集群配置)](#inheriting-hadoop-cluster-configuration-继承-hadoop-集群配置)

Spark 提供了三个位置来配置系统:

取昵称好难啊's avatar
取昵称好难啊 已提交
35 36
*   [Spark 属性](#spark-properties) 控制着大多数应用参数,并且可以通过使用一个 [SparkConf](api/scala/index.html#org.apache.spark.SparkConf) 对象来设置,或者通过 Java 系统属性来设置.
*   [环境变量](#environment-variables) 可用于在每个节点上通过 `conf/spark-env.sh` 脚本来设置每台机器设置,例如 IP 地址.
W
init  
wizardforcel 已提交
37 38 39 40
*   [Logging](#configuring-logging) 可以通过 `log4j.properties` 来设置.

# Spark 属性

41
Spark 属性控制大多数应用程序设置,并为每个应用程序单独配置。这些属性可以直接在 [SparkConf](api/scala/index.html#org.apache.spark.SparkConf) 上设置并传递给您的 `SparkContext``SparkConf` 可以让你配置一些常见的属性(例如 master URL 和应用程序名称),以及通过 `set()` 方法来配置任意 key-value pairs (键值对)。例如,我们可以使用两个线程初始化一个应用程序,如下所示:
W
init  
wizardforcel 已提交
42

取昵称好难啊's avatar
取昵称好难啊 已提交
43
请注意,我们运行 local[2],意思是两个线程 - 代表 “最小” 并行性,这可以帮助检测在只存在于分布式环境中运行时的错误.
W
init  
wizardforcel 已提交
44 45 46 47 48 49 50 51 52 53 54 55



```
val conf = new SparkConf()
             .setMaster("local[2]")
             .setAppName("CountingSheep")
val sc = new SparkContext(conf)
```



56
注意,本地模式下,我们可以使用多个线程,而且在像 Spark Streaming 这样的场景下,我们可能需要多个线程来防止任一类型的类似 starvation issues (线程饿死) 这样的问题。配置时间段的属性应该写明时间单位,如下格式都是可接受的:
W
init  
wizardforcel 已提交
57 58 59 60 61 62 63 64 65 66

```
25ms (milliseconds)
5s (seconds)
10m or 10min (minutes)
3h (hours)
5d (days)
1y (years) 
```

67
指定 byte size (字节大小)的属性应该写明单位。如下格式都是可接受的:
W
init  
wizardforcel 已提交
68 69 70 71 72 73 74 75 76 77 78 79

```
1b (bytes)
1k or 1kb (kibibytes = 1024 bytes)
1m or 1mb (mebibytes = 1024 kibibytes)
1g or 1gb (gibibytes = 1024 mebibytes)
1t or 1tb (tebibytes = 1024 gibibytes)
1p or 1pb (pebibytes = 1024 tebibytes) 
```

## 动态加载 Spark 属性

80
在某些场景下,你可能想避免将属性值写死在 SparkConf 中。例如,你可能希望在同一个应用上使用不同的 master 或不同的内存总量。Spark 允许你简单地创建一个空的 conf :
W
init  
wizardforcel 已提交
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100



```
val sc = new SparkContext(new SparkConf())
```



然后在运行时设置这些属性 :



```
./bin/spark-submit --name "My app" --master local[4] --conf spark.eventLog.enabled=false
  --conf "spark.executor.extraJavaOptions=-XX:+PrintGCDetails -XX:+PrintGCTimeStamps" myApp.jar
```



101
Spark shell 和 [`spark-submit`](submitting-applications.html) 工具支持两种动态加载配置的方法。第一种,通过命令行选项,如:上面提到的 `--master``spark-submit` 可以使用 `--conf` flag 来接受任何 Spark 属性标志,但对于启动 Spark 应用程序的属性使用 special flags (特殊标志)。运行 `./bin/spark-submit --help` 可以展示这些选项的完整列表.
W
init  
wizardforcel 已提交
102

取昵称好难啊's avatar
取昵称好难啊 已提交
103
`bin/spark-submit` 也支持从 `conf/spark-defaults.conf` 中读取配置选项,其中每行由一个 key (键)和一个由 whitespace (空格)分隔的 value (值)组成,如下:
W
init  
wizardforcel 已提交
104 105 106 107 108 109 110 111

```
spark.master            spark://5.6.7.8:7077
spark.executor.memory   4g
spark.eventLog.enabled  true
spark.serializer        org.apache.spark.serializer.KryoSerializer 
```

112
指定为 flags (标志)或属性文件中的任何值都将传递给应用程序并与通过 SparkConf 指定的那些值 merge (合并)。属性直接在 SparkConf 上设置采取最高优先级,然后 flags (标志)传递给 `spark-submit``spark-shell`,然后选项在 `spark-defaults.conf` 文件中。自从 Spark 版本的早些时候,一些 configuration keys (配置键)已被重命名 ; 在这种情况下,旧的 key names (键名)仍然被接受,但要比较新的 key 优先级都要低一些.
W
init  
wizardforcel 已提交
113 114 115

## 查看 Spark 属性

116
在应用程序的 web UI `http://<driver>:4040` 中,“Environment” tab (“环境”选项卡)中列出了 Spark 的属性。这是一个检查您是否正确设置了您的属性的一个非常有用的地方。注意,只有显示地通过 `spark-defaults.conf``SparkConf` 或者命令行设置的值将会出现。对于所有其他配置属性,您可以认为使用的都是默认值.
W
init  
wizardforcel 已提交
117 118 119

## 可用属性

120
大多数控制 internal settings (内部设置) 的属性具有合理的默认值。一些常见的选项是:
W
init  
wizardforcel 已提交
121 122 123 124 125 126 127 128

### 应用程序属性

| Property Name (属性名称) | Default (默认值) | Meaning (含义) |
| --- | --- | --- |
| `spark.app.name` | (none) | Spark 应用的名字。会在 SparkUI 和日志中出现。 |
| `spark.driver.cores` | 1 | 在 cluster 模式下,用几个 core 运行 driver 进程。 |
| `spark.driver.maxResultSize` | 1g | Spark action 算子返回的结果集的最大数量。至少要 1M,可以设为 0 表示无限制。如果结果超过这一大小,Spark job 会直接中断退出。但是,设得过高有可能导致 driver 出现 out-of-memory 异常(取决于 spark.driver.memory 设置,以及驱动器 JVM 的内存限制)。设一个合理的值,以避免 driver 出现 out-of-memory 异常。 |
129
| `spark.driver.memory` | 1g | driver进程可以使用的内存总量(如:`1g``2g`)。注意,在 client 模式下,这个配置不能在 SparkConf 中直接设置,应为在那个时候 driver 进程的 JVM 已经启动了。因此需要在命令行里用 --driver-memory 选项 或者在默认属性配置文件里设置。 |
取昵称好难啊's avatar
取昵称好难啊 已提交
130
| `spark.executor.memory` | 1g | 每个 executor 进程使用的内存总量(如,`2g``8g`)。Amount of memory to use per executor process (e.g. `2g``8g`). |
W
init  
wizardforcel 已提交
131
| `spark.extraListeners` | (none) | 逗号分隔的实现 `SparkListener` 接口的类名列表;初始化 SparkContext 时,这些类的实例会被创建出来,并且注册到 Spark 的监听器上。如果这些类有一个接受 SparkConf 作为唯一参数的构造函数,那么这个构造函数会被调用;否则,就调用无参构造函数。如果没有合适的构造函数,SparkContext 创建的时候会抛异常。 |
132
| `spark.local.dir` | /tmp | Spark 的”草稿“目录,包括 map 输出的临时文件以及 RDD 存在磁盘上的数据。这个目录最好在本地文件系统中。这个配置可以接受一个以逗号分隔的多个挂载到不同磁盘上的目录列表。注意:Spark-1.0 及以后版本中,这个属性会被 cluster manager 设置的环境变量覆盖:SPARK_LOCAL_DIRS(Standalone,Mesos)或者 LOCAL_DIRS(YARN)。 |
W
init  
wizardforcel 已提交
133 134 135 136 137 138 139 140 141 142 143 144
| `spark.logConf` | false | SparkContext 启动时是否把生效的 SparkConf 属性以 INFO 日志打印到日志里。 |
| `spark.master` | (none) | 要连接的 cluster manager。参考 [Cluster Manager](submitting-applications.html#master-urls) 类型。 |
| `spark.submit.deployMode` | (none) | Spark driver 程序的部署模式,可以是 "client" 或 "cluster",意味着部署 dirver 程序本地("client")或者远程("cluster")在 Spark 集群的其中一个节点上。 |
| `spark.log.callerContext` | (none) | Application information that will be written into Yarn RM log/HDFS audit log when running on Yarn/HDFS. Its length depends on the Hadoop configuration `hadoop.caller.context.max.size`. It should be concise, and typically can have up to 50 characters. |
| `spark.driver.supervise` | false | If true, restarts the driver automatically if it fails with a non-zero exit status. Only has effect in Spark standalone mode or Mesos cluster deploy mode. |

Apart from these, the following properties are also available, and may be useful in some situations:

### 运行环境

| Property Name (属性名称) | Default (默认值) | Meaning (含义) |
| --- | --- | --- |
145
| `spark.driver.extraClassPath` | (none) | 额外的classpath条目需预先添加到驱动程序 classpath中。注意:在客户端模式下,这一套配置不能通过 SparkConf 直接在应用在应用程序中,因为 JVM 驱动已经启用了。相反,请在配置文件中通过设置 --driver-class-path 选项或者选择默认属性。 |
W
init  
wizardforcel 已提交
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
| `spark.driver.extraJavaOptions` | (none) | 一些额外的 JVM 属性传递给驱动。例如,GC 设置或其他日志方面设置。注意,设置最大堆大小(-Xmx)是不合法的。最大堆大小设置可以通过在集群模式下设置 `spark.driver.memory` 选项,并且可以通过`--driver-memory` 在客户端模式设置。
_注意:_ 在客户端模式下,这一套配置不能通过 `SparkConf` 直接应用在应用程序中,因为 JVM 驱动已经启用了。相反,请在配置文件中通过设置 `--driver-java-options` 选项或者选择默认属性。 |
| `spark.driver.extraLibraryPath` | (none) | 当启动 JVM 驱动程序时设置一个额外的库路径。
_注意:_ 在客户端模式下,这一套配置不能通过 `SparkConf` 直接在应用在应用程序中,因为 JVM 驱动已经启用了。相反,请在配置文件中通过设置 `--driver-library-path` 选项或者选择默认属性。 |
| `spark.driver.userClassPathFirst` | false | (实验)在驱动程序加载类库时,用户添加的 Jar 包是否优先于 Spark 自身的 Jar 包。这个特性可以用来缓解冲突引发的依赖性和用户依赖。目前只是实验功能。这是仅用于集群模式。 |
| `spark.executor.extraClassPath` | (none) | 额外的类路径要预先考虑到 executor 的 classpath。这主要是为与旧版本的 Spark 向后兼容。用户通常不应该需要设置这个选项。 |
| `spark.executor.extraJavaOptions` | (none) | 一些额外的 JVM 属性传递给 executor。例如,GC 设置或其他日志方面设置。注意,设置最大堆大小(-Xmx)是不合法的。Spark 应该使用 SparkConf 对象或 Spark 脚本中使用的 spark-defaults.conf 文件中设置。最大堆大小设置可以在 spark.executor.memory 进行设置。 |
| `spark.executor.extraLibraryPath` | (none) | 当启动 JVM 的可执行程序时设置额外的类库路径。 |
| `spark.executor.logs.rolling.maxRetainedFiles` | (none) | 最新回滚的日志文件将被系统保留。旧的日志文件将被删除。默认情况下禁用。 |
| `spark.executor.logs.rolling.enableCompression` | false | Enable executor log compression. If it is enabled, the rolled executor logs will be compressed. Disabled by default. |
| `spark.executor.logs.rolling.maxSize` | (none) | 设置最大文件的大小,以字节为单位日志将被回滚。默认禁用。见 `spark.executor.logs.rolling.maxRetainedFiles` 旧日志的自动清洗。 |
| `spark.executor.logs.rolling.strategy` | (none) | 设置 executor 日志的回滚策略。它可以被设置为 “时间”(基于时间的回滚)或 “大小”(基于大小的回滚)。对于 “时间”,使用 `spark.executor.logs.rolling.time.interval` 设置回滚间隔。用 `spark.executor.logs.rolling.maxSize` 设置最大文件大小回滚。 |
| `spark.executor.logs.rolling.time.interval` | daily | 设定的时间间隔,executor 日志将回滚。默认情况下是禁用的。有效值是`每天``每小时``每分钟`或任何时间间隔在几秒钟内。见 `spark.executor.logs.rolling.maxRetainedFiles` 旧日志的自动清洗。 |
| `spark.executor.userClassPathFirst` | false | (实验)与 `spark.driver.userClassPathFirst` 相同的功能,但适用于执行程序的实例。 |
| `spark.executorEnv.[EnvironmentVariableName]` | (none) | 通过添加指定的环境变量 `EnvironmentVariableName` 给 executor 进程。用户可以设置多个环境变量。 |
| `spark.redaction.regex` | (?i)secret|password | Regex to decide which Spark configuration properties and environment variables in driver and executor environments contain sensitive information. When this regex matches a property key or value, the value is redacted from the environment UI and various logs like YARN and event logs. |
| `spark.python.profile` | false | 启用在 python 中的 profile。结果将由 `sc.show_profiles()` 显示,或者它将会在驱动程序退出后显示。它还可以通过 `sc.dump_profiles(path)` dump 到磁盘。如果一些 profile 文件的结果已经显示,那么它们将不会再驱动程序退出后再次显示。默认情况下,`pyspark.profiler.BasicProfiler` 将被使用,但这可以通过传递一个 profile 类作为一个参数到 `SparkContext` 中进行覆盖。 |
| `spark.python.profile.dump` | (none) | 这个目录是在驱动程序退出后,proflie 文件 dump 到磁盘中的文件目录。结果将为每一个 RDD dump 为分片文件。它们可以通过 ptats.Stats() 加载。如果指定,profile 结果将不会自动显示。 |
取昵称好难啊's avatar
取昵称好难啊 已提交
164
| `spark.python.worker.memory` | 512m | 在聚合期间,每个python工作进程使用的内存量,与JVM内存条(例如:`512m``2g`)格式相同。如果在聚合过程中使用的内存高于此数量,则会将数据溢出到磁盘中。 |
W
init  
wizardforcel 已提交
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
| `spark.python.worker.reuse` | true | 重用 python worker。如果为 true,它将使用固定数量的 worker 数量。不需要为每一个任务分配 python 进程。如果是大型的这将是非常有用。 |
| `spark.files` |  | Comma-separated list of files to be placed in the working directory of each executor. |
| `spark.submit.pyFiles` |  | Comma-separated list of .zip, .egg, or .py files to place on the PYTHONPATH for Python apps. |
| `spark.jars` |  | Comma-separated list of local jars to include on the driver and executor classpaths. |
| `spark.jars.packages` |  | Comma-separated list of Maven coordinates of jars to include on the driver and executor classpaths. The coordinates should be groupId:artifactId:version. If `spark.jars.ivySettings` 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 the command-line option `--repositories`. For more details, see [Advanced Dependency Management](submitting-applications.html#advanced-dependency-management). |
| `spark.jars.excludes` |  | Comma-separated list of groupId:artifactId, to exclude while resolving the dependencies provided in `spark.jars.packages` to avoid dependency conflicts. |
| `spark.jars.ivy` |  | Path to specify the Ivy user directory, used for the local Ivy cache and package files from `spark.jars.packages`. This will override the Ivy property `ivy.default.ivy.user.dir` which defaults to ~/.ivy2. |
| `spark.jars.ivySettings` |  | Path to an Ivy settings file to customize resolution of jars specified using `spark.jars.packages` instead of the built-in defaults, such as maven central. Additional repositories given by the command-line option `--repositories` will also be included. 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 |
| `spark.pyspark.driver.python` |  | Python binary executable to use for PySpark in driver. (default is `spark.pyspark.python`) |
| `spark.pyspark.python` |  | Python binary executable to use for PySpark in both driver and executors. |

### Shuffle Behavior (Shuffle 行为)

| Property Name (属性名称) | Default (默认值) | Meaning (含义) |
| --- | --- | --- |
| `spark.reducer.maxSizeInFlight` | 48m | 从每个 Reduce 任务中并行的 fetch 数据的最大大小。因为每个输出都要求我们创建一个缓冲区,这代表要为每一个 Reduce 任务分配一个固定大小的内存。除非内存足够大否则尽量设置小一点。 |
| `spark.reducer.maxReqsInFlight` | Int.MaxValue | 在集群节点上,这个配置限制了远程 fetch 数据块的连接数目。当集群中的主机数量的增加时候,这可能导致大量的到一个或多个节点的主动连接,导致负载过多而失败。通过限制获取请求的数量,可以缓解这种情况。 |
| `spark.shuffle.compress` | true | 是否要对 map 输出的文件进行压缩。默认为 true,使用 `spark.io.compression.codec`。 |
| `spark.shuffle.file.buffer` | 32k | 每个 shuffle 文件输出流的内存大小。这些缓冲区的数量减少了磁盘寻道和系统调用创建的 shuffle 文件。 |
| `spark.shuffle.io.maxRetries` | 3 | (仅适用于 Netty)如果设置了非 0 值,与 IO 异常相关失败的 fetch 将自动重试。在遇到长时间的 GC 问题或者瞬态网络连接问题时候,这种重试有助于大量 shuffle 的稳定性。 |
| `spark.shuffle.io.numConnectionsPerPeer` | 1 | (仅Netty)重新使用主机之间的连接,以减少大型集群的连接建立。 对于具有许多硬盘和少量主机的群集,这可能导致并发性不足以使所有磁盘饱和,因此用户可考虑增加此值。 |
| `spark.shuffle.io.preferDirectBufs` | true | (仅适用于 Netty)堆缓冲区用于减少在 shuffle 和缓存块传输中的垃圾回收。对于严格限制的堆内存环境中,用户可能希望把这个设置关闭,以强制Netty的所有分配都在堆上。 |
| `spark.shuffle.io.retryWait` | 5s | (仅适用于 Netty)fetch 重试的等待时长。默认 15s。计算公式是 `maxRetries * retryWait`。 |
取昵称好难啊's avatar
取昵称好难啊 已提交
188
| `spark.shuffle.service.enabled` | false | 启用外部随机播放服务。此服务保留由执行者编写的随机播放文件,以便可以安全地删除执行程序。如果`spark.dynamicAllocation.enabled` 为 "true",则必须启用此功能。必须设置外部随机播放服务才能启用它。有关详细信息,请参阅 [动态分配配置和设置文档](job-scheduling.html#configuration-and-setup)。 |
W
init  
wizardforcel 已提交
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
| `spark.shuffle.service.port` | 7337 | 外部 shuffle 的运行端口。 |
| `spark.shuffle.service.index.cache.entries` | 1024 | Max number of entries to keep in the index cache of the shuffle service. |
| `spark.shuffle.sort.bypassMergeThreshold` | 200 | (Advanced) In the sort-based shuffle manager, avoid merge-sorting data if there is no map-side aggregation and there are at most this many reduce partitions. |
| `spark.shuffle.spill.compress` | true | Whether to compress data spilled during shuffles. Compression will use `spark.io.compression.codec`. |
| `spark.shuffle.accurateBlockThreshold` | 100 * 1024 * 1024 | When we compress the size of shuffle blocks in HighlyCompressedMapStatus, we will record the size accurately if it's above this config. This helps to prevent OOM by avoiding underestimating shuffle block size when fetch shuffle blocks. |
| `spark.io.encryption.enabled` | false | Enable IO encryption. Currently supported by all modes except Mesos. It's recommended that RPC encryption be enabled when using this feature. |
| `spark.io.encryption.keySizeBits` | 128 | IO encryption key size in bits. Supported values are 128, 192 and 256. |
| `spark.io.encryption.keygen.algorithm` | HmacSHA1 | The algorithm to use when generating the IO encryption key. The supported algorithms are described in the KeyGenerator section of the Java Cryptography Architecture Standard Algorithm Name Documentation. |

### Spark UI

| Property Name (属性名称) | Default (默认值) | Meaning (含义) |
| --- | --- | --- |
| `spark.eventLog.compress` | false | 是否压缩记录的事件,如果 `spark.eventLog.enabled` 为true。压缩将使用`spark.io.compression.codec`。 |
| `spark.eventLog.dir` | file:///tmp/spark-events | Spark 事件日志的文件路径。如果 `spark.eventLog.enabled` 为 true。在这个基本目录下,Spark 为每个应用程序创建一个二级目录,日志事件特定于应用程序的目录。用户可能希望设置一个统一的文件目录像一个 HDFS 目录那样,所以历史文件可以从历史文件服务器中读取。 |
| `spark.eventLog.enabled` | false | 是否对 Spark 事件记录日志。在应用程序启动后有助于重建 Web UI。 |
| `spark.ui.enabled` | true | Whether to run the web UI for the Spark application. |
| `spark.ui.killEnabled` | true | 允许从 Web UI 中结束相应的工作进程。 |
| `spark.ui.port` | 4040 | 应用 UI 的端口,用于显示内存和工作负载数据。 |
| `spark.ui.retainedJobs` | 1000 | 在垃圾回收前,Spark UI 和 API 有多少 Job 可以留存。 |
| `spark.ui.retainedStages` | 1000 | 在垃圾回收前,Spark UI 和 API 有多少 Stage 可以留存。 |
| `spark.ui.retainedTasks` | 100000 | 在垃圾回收前,Spark UI 和 API 有多少 Task 可以留存。 |
| `spark.ui.reverseProxy` | false | Enable running Spark Master as reverse proxy for worker and application UIs. In this mode, Spark master will reverse proxy the worker and application UIs to enable access without requiring direct access to their hosts. Use it with caution, as worker and application UI will not be accessible directly, you will only be able to access them through spark master/proxy public URL. This setting affects all the workers and application UIs running in the cluster and must be set on all the workers, drivers and masters. |
| `spark.ui.reverseProxyUrl` |  | This is the URL where your proxy is running. This URL is for proxy which is running in front of Spark Master. This is useful when running proxy for authentication e.g. OAuth proxy. Make sure this is a complete URL including scheme (http/https) and port to reach your proxy. |
| `spark.ui.showConsoleProgress` | true | Show the progress bar in the console. The progress bar shows the progress of stages that run for longer than 500ms. If multiple stages run at the same time, multiple progress bars will be displayed on the same line. |
| `spark.worker.ui.retainedExecutors` | 1000 | 在垃圾回收前,Spark UI 和 API 有多少 execution 已经完成。 |
| `spark.worker.ui.retainedDrivers` | 1000 | 在垃圾回收前,Spark UI 和 API 有多少 driver 已经完成。 |
| `spark.sql.ui.retainedExecutions` | 1000 | 在垃圾回收前,Spark UI 和 API 有多少 execution 已经完成。 |
| `spark.streaming.ui.retainedBatches` | 1000 | 在垃圾回收前,Spark UI 和 API 有多少 batch 已经完成。 |
| `spark.ui.retainedDeadExecutors` | 100 | 在垃圾回收前,Spark UI 和 API 有多少 dead executors。 |

### Compression and Serialization (压缩和序列化)

| Property Name (属性名称) | Default (默认值) | Meaning (含义) |
| --- | --- | --- |
| `spark.broadcast.compress` | true | 是否在发送之前压缩广播变量。一般是个好主意压缩将使用 `spark.io.compression.codec`。 |
225
| `spark.io.compression.codec` | lz4 | 内部数据使用的压缩编解码器,如 RDD 分区,广播变量和混洗输出。默认情况下,Spark 提供三种编解码器:`lz4``lzf`,和 `snappy`。您还可以使用完全限定类名来指定编码解码器, 例如:`org.apache.spark.io.LZ4CompressionCodec``org.apache.spark.io.LZFCompressionCodec`, 和 `org.apache.spark.io.SnappyCompressionCodec`。 |
W
init  
wizardforcel 已提交
226 227 228
| `spark.io.compression.lz4.blockSize` | 32k | 在采用 LZ4 压缩编解码器的情况下,LZ4 压缩使用的块大小。减少块大小还将降低采用 LZ4 时的混洗内存使用。 |
| `spark.io.compression.snappy.blockSize` | 32k | 在采用 Snappy 压缩编解码器的情况下,Snappy 压缩使用的块大小。减少块大小还将降低采用 Snappy 时的混洗内存使用。 |
| `spark.kryo.classesToRegister` | (none) | 如果你采用 Kryo 序列化,给一个以逗号分隔的自定义类名列以注册 Kryo。有关详细信息,请参阅[调优指南](tuning.html#data-serialization)。 |
取昵称好难啊's avatar
取昵称好难啊 已提交
229 230
| `spark.kryo.referenceTracking` | true | 当使用 Kryo 序列化数据时,是否跟踪对同一对象的引用,如果对象图具有循环,并且如果它们包含同一对象的多个副本对效率有用,则这是必需的。如果您知道这不是这样,可以禁用此功能来提高性能。 |
| `spark.kryo.registrationRequired` | false | 是否需要注册 Kryo。如果设置为 'true',如果未注册的类被序列化,Kryo 将抛出异常。如果设置为 false(默认值),Kryo 将与每个对象一起写入未注册的类名。编写类名可能会导致显著的性能开销,因此启用此选项可以严格强制用户没有从注册中省略类。 |
231
| `spark.kryo.registrator` | (none) | 如果你采用 Kryo 序列化,则给一个逗号分隔的类列表,以使用 Kryo 注册你的自定义类。如果你需要以自定义方式注册你的类,则此属性很有用,例如以指定自定义字段序列化程序。否则,使用 spark.kryo.classesToRegisteris 更简单。它应该设置为 [`KryoRegistrator`](api/scala/index.html#org.apache.spark.serializer.KryoRegistrator) 的子类。详见:[调整指南](tuning.html#data-serialization)。 |
W
init  
wizardforcel 已提交
232
| `spark.kryo.unsafe` | false | Whether to use unsafe based Kryo serializer. Can be substantially faster by using Unsafe Based IO. |
取昵称好难啊's avatar
取昵称好难啊 已提交
233 234 235
| `spark.kryoserializer.buffer.max` | 64m | Kryo 序列化缓冲区的最大允许大小。这必须大于你需要序列化的任何对象。如果你在 Kryo 中得到一个 “buffer limit exceeded” 异常,你就需要增加这个值。 |
| `spark.kryoserializer.buffer` | 64k | Kryo 序列化缓冲区的初始大小。注意,每个 worker上 _每个 core_ 会有一个缓冲区。如果需要,此缓冲区将增长到 `spark.kryoserializer.buffer.max`。 |
| `spark.rdd.compress` | false | 是否压缩序列化RDD分区(例如,在 Java 和 Scala 中为 `StorageLevel.MEMORY_ONLY_SER` 或在 Python 中为 `StorageLevel.MEMORY_ONLY`)。可以节省大量空间,花费一些额外的CPU时间。压缩将使用 `spark.io.compression.codec`。 |
W
init  
wizardforcel 已提交
236
| `spark.serializer` | org.apache.spark.serializer.
取昵称好难啊's avatar
取昵称好难啊 已提交
237
JavaSerializer | 用于序列化将通过网络发送或需要以序列化形式缓存的对象的类。Java 序列化的默认值与任何Serializable Java对象一起使用,但速度相当慢,所以我们建议您在需要速度时使用 [使用 `org.apache.spark.serializer.KryoSerializer` 并配置 Kryo 序列化](tuning.html)。可以是 [`org.apache.spark.Serializer`](api/scala/index.html#org.apache.spark.serializer.Serializer) 的任何子类。 |
取昵称好难啊's avatar
取昵称好难啊 已提交
238
| `spark.serializer.objectStreamReset` | 100 | 当正使用 org.apache.spark.serializer.JavaSerializer 序列化时,序列化器缓存对象虽然可以防止写入冗余数据,但是却停止这些缓存对象的垃圾回收。通过调用 'reset' 你从序列化程序中清除该信息,并允许收集旧的对象。要禁用此周期性重置,请将其设置为 -1。默认情况下,序列化器会每过 100 个对象被重置一次。 |
W
init  
wizardforcel 已提交
239 240 241 242 243

### Memory Management (内存管理)

| Property Name (属性名称) | Default (默认值) | Meaning (含义) |
| --- | --- | --- |
取昵称好难啊's avatar
取昵称好难啊 已提交
244 245 246 247
| `spark.memory.fraction` | 0.6 | 用于执行和存储的(堆空间 - 300MB)的分数。这个值越低,溢出和缓存数据逐出越频繁。此配置的目的是在稀疏、异常大的记录的情况下为内部元数据,用户数据结构和不精确的大小估计预留内存。推荐使用默认值。有关更多详细信息,包括关于在增加此值时正确调整 JVM 垃圾回收的重要信息,请参阅 [this description](tuning.html#memory-management-overview)。 |
| `spark.memory.storageFraction` | 0.5 | 不会被逐出内存的总量,表示为 `s​park.memory.fraction` 留出的区域大小的一小部分。这个越高,工作内存可能越少,执行和任务可能更频繁地溢出到磁盘。推荐使用默认值。有关更多详细信息,请参阅 [this description](tuning.html#memory-management-overview)。 |
| `spark.memory.offHeap.enabled` | false | 如果为 true,Spark 会尝试对某些操作使用堆外内存。如果启用了堆外内存使用,则 `spark.memory.offHeap.size` 必须为正值。 |
| `spark.memory.offHeap.size` | 0 | 可用于堆外分配的绝对内存量(以字节为单位)。此设置对堆内存使用没有影响,因此如果您的执行器的总内存消耗必须满足一些硬限制,那么请确保相应地缩减JVM堆大小。当 `spark.memory.offHeap.enabled=true` 时,必须将此值设置为正值。 |
248
| `spark.memory.useLegacyMode` | false | 是否启用 Spark 1.5 及以前版本中使用的传统内存管理模式。传统模式将堆空间严格划分为固定大小的区域,如果未调整应用程序,可能导致过多溢出。必须启用本参数,以下选项才可用:`spark.shuffle.memoryFraction`
W
init  
wizardforcel 已提交
249 250
`spark.storage.memoryFraction`
`spark.storage.unrollFraction` |
取昵称好难啊's avatar
取昵称好难啊 已提交
251 252 253
| `spark.shuffle.memoryFraction` | 0.2 | (过时)只有在启用 `spark.memory.useLegacyMode` 时,此属性才是可用的。混洗期间用于聚合和 cogroups 的 Java 堆的分数。在任何给定时间,用于混洗的所有内存映射的集合大小不会超过这个上限,超过该限制的内容将开始溢出到磁盘。如果溢出频繁,请考虑增加此值,但这以 `spark.storage.memoryFraction` 为代价。 |
| `spark.storage.memoryFraction` | 0.6 | (过时)只有在启用 `spark.memory.useLegacyMode` 时,此属性才是可用的。Java 堆的分数,用于 Spark 的内存缓存。这个值不应该大于 JVM 中老生代(old generation) 对象所占用的内存,默认情况下,它提供 0.6 的堆,但是如果配置你所用的老生代对象大小,你可以增加它。 |
| `spark.storage.unrollFraction` | 0.2 | (过时)只有在启用 `spark.memory.useLegacyMode` 时,此属性才是可用的。`spark.storage.memoryFraction` 用于在内存中展开块的分数。当没有足够的空闲存储空间来完全展开新块时,通过删除现有块来动态分配。 |
W
init  
wizardforcel 已提交
254 255 256 257 258 259
| `spark.storage.replication.proactive` | false | Enables proactive block replication for RDD blocks. Cached RDD block replicas lost due to executor failures are replenished if there are any existing available replicas. This tries to get the replication level of the block to the initial number. |

### Execution Behavior (执行行为)

| Property Name (属性名称) | Default (默认行为) | Meaning (含义) |
| --- | --- | --- |
取昵称好难啊's avatar
取昵称好难啊 已提交
260 261 262
| `spark.broadcast.blockSize` | 4m | `TorrentBroadcastFactory` 的一个块的每个分片大小。过大的值会降低广播期间的并行性(更慢了); 但是,如果它过小,`BlockManager` 可能会受到性能影响。 |
| `spark.executor.cores` | 在 YARN 模式下默认为 1,standlone 和 Mesos 粗粒度模型中的 worker 节点的所有可用的 core。 | 在每个 executor(执行器)上使用的 core 数。在 standlone 和 Mesos 的粗粒度模式下,设置此参数允许应用在相同的 worker 上运行多个 executor(执行器),只要该 worker 上有足够的 core。否则,每个 application(应用)在单个 worker 上只会启动一个 executor(执行器)。 |
| `spark.default.parallelism` | 对于分布式混洗(shuffle)操作,如 `reduceByKey``join`,父 RDD 中分区的最大数量。对于没有父 RDD 的 `parallelize` 操作,它取决于集群管理器 :
W
init  
wizardforcel 已提交
263

264 265 266
*   本地模式:本地机器上的 core 数
*   Mesos 细粒度模式:8
*   其他:所有执行器节点上的 core 总数或者 2,以较大者为准
W
init  
wizardforcel 已提交
267

取昵称好难啊's avatar
取昵称好难啊 已提交
268
 | 如果用户没有指定参数值,则这个属性是 `join``reduceByKey`,和 `parallelize` 等转换返回的 RDD 中的默认分区数。 |
取昵称好难啊's avatar
取昵称好难啊 已提交
269
| `spark.executor.heartbeatInterval` | 10s | 每个执行器的心跳与驱动程序之间的间隔。心跳让驱动程序知道执行器仍然存活,并用正在进行的任务的指标更新它 |
W
init  
wizardforcel 已提交
270
| `spark.files.fetchTimeout` | 60s | 获取文件的通讯超时,所获取的文件是从驱动程序通过 SparkContext.addFile() 添加的。 |
取昵称好难啊's avatar
取昵称好难啊 已提交
271
| `spark.files.useFetchCache` | true | 如果设置为 true(默认),文件提取将使用由属于同一应用程序的执行器共享的本地缓存,这可以提高在同一主机上运行许多执行器时的任务启动性能。如果设置为 false,这些缓存优化将被禁用,所有执行器将获取它们自己的文件副本。如果使用驻留在 NFS 文件系统上的 Spark 本地目录,可以禁用此优化(有关详细信息,请参阅 [SPARK-6313](https://issues.apache.org/jira/browse/SPARK-6313) )。 |
W
init  
wizardforcel 已提交
272 273 274
| `spark.files.overwrite` | false | 当目标文件存在且其内容与源不匹配的情况下,是否覆盖通过 SparkContext.addFile() 添加的文件。 |
| `spark.files.maxPartitionBytes` | 134217728 (128 MB) | The maximum number of bytes to pack into a single partition when reading files. |
| `spark.files.openCostInBytes` | 4194304 (4 MB) | The estimated cost to open a file, measured by the number of bytes could be scanned in the same time. This is used when putting multiple files into a partition. It is better to over estimate, then the partitions with small files will be faster than partitions with bigger files. |
取昵称好难啊's avatar
取昵称好难啊 已提交
275 276 277
| `spark.hadoop.cloneConf` | false | 如果设置为true,则为每个任务克隆一个新的Hadoop `Configuration` 对象。应该启用此选项以解决 `Configuration` 线程安全问题(有关详细信息,请参阅 [SPARK-2546](https://issues.apache.org/jira/browse/SPARK-2546))。默认情况下,这是禁用的,以避免不受这些问题影响的作业的意外性能回归。 |
| `spark.hadoop.validateOutputSpecs` | true | 如果设置为 true,则验证 saveAsHadoopFile 和其他变体中使用的输出规范(例如,检查输出目录是否已存在)。可以禁用此选项以静默由于预先存在的输出目录而导致的异常。我们建议用户不要禁用此功能,除非需要实现与以前版本的 Spark 的兼容性。可以简单地使用 Hadoop 的 FileSystem API 手动删除输出目录。对于通过 Spark Streaming 的StreamingContext 生成的作业会忽略此设置,因为在检查点恢复期间可能需要将数据重写到预先存在的输出目录。 |
| `spark.storage.memoryMapThreshold` | 2m | 当从磁盘读取块时,Spark 内存映射的块大小。这会阻止 Spark 从内存映射过小的块。通常,存储器映射对于接近或小于操作系统的页大小的块具有高开销。 |
W
init  
wizardforcel 已提交
278 279 280 281 282 283
| `spark.hadoop.mapreduce.fileoutputcommitter.algorithm.version` | 1 | The file output committer algorithm version, valid algorithm version number: 1 or 2. Version 2 may have better performance, but version 1 may handle failures better in certain situations, as per [MAPREDUCE-4815](https://issues.apache.org/jira/browse/MAPREDUCE-4815). |

### Networking (网络)

| Property Name (属性名称) | Default (默认值) | Meaning (含义) |
| --- | --- | --- |
取昵称好难啊's avatar
取昵称好难啊 已提交
284 285
| `spark.rpc.message.maxSize` | 128 | 在 “control plane” 通信中允许的最大消息大小(以 MB 为单位); 一般只适用于在 executors 和 driver 之间发送的映射输出大小信息。如果您正在运行带有数千个 map 和 reduce 任务的作业,并查看有关 RPC 消息大小的消息,请增加此值。 |
| `spark.blockManager.port` | (random) | 所有块管理器监听的端口。这些都存在于 driver 和 executors 上。 |
W
init  
wizardforcel 已提交
286 287 288
| `spark.driver.blockManager.port` | (value of spark.blockManager.port) | Driver-specific port for the block manager to listen on, for cases where it cannot use the same configuration as executors. |
| `spark.driver.bindAddress` | (value of spark.driver.host) | Hostname or IP address where to bind listening sockets. This config overrides the SPARK_LOCAL_IP environment variable (see below).
It also allows a different address from the local one to be advertised to executors or external systems. This is useful, for example, when running containers with bridged networking. For this to properly work, the different ports used by the driver (RPC, block manager and UI) need to be forwarded from the container's host. |
取昵称好难啊's avatar
取昵称好难啊 已提交
289
| `spark.driver.host` | (local hostname) | 要监听的 driver 的主机名或 IP 地址。这用于与 executors 和 standalone Master 进行通信。 |
W
init  
wizardforcel 已提交
290
| `spark.driver.port` | (random) | 要监听的 driver 的端口。这用于与 executors 和 standalone Master 进行通信。 |
取昵称好难啊's avatar
取昵称好难啊 已提交
291
| `spark.network.timeout` | 120s | 所有网络交互的默认超时。如果未配置此项,将使用此配置替换 `spark.core.connection.ack.wait.timeout``spark.storage.blockManagerSlaveTimeoutMs``spark.shuffle.io.connectionTimeout``spark.rpc.askTimeout` or `spark.rpc.lookupTimeout`。 |
取昵称好难啊's avatar
取昵称好难啊 已提交
292 293
| `spark.port.maxRetries` | 16 | 在绑定端口放弃之前的最大重试次数。当端口被赋予特定值(非 0)时,每次后续重试将在重试之前将先前尝试中使用的端口增加 1。这本质上允许它尝试从指定的开始端口到端口 + maxRetries 的一系列端口。 |
| `spark.rpc.numRetries` | 3 | 在 RPC 任务放弃之前重试的次数。RPC 任务将在此数字的大多数时间运行。 |
W
init  
wizardforcel 已提交
294 295 296 297 298 299 300 301
| `spark.rpc.retry.wait` | 3s | RPC 请求操作在重试之前等待的持续时间。 |
| `spark.rpc.askTimeout` | `spark.network.timeout` | RPC 请求操作在超时前等待的持续时间。 |
| `spark.rpc.lookupTimeout` | 120s | RPC 远程端点查找操作在超时之前等待的持续时间。 |

### Scheduling (调度)

| Property Name (属性名称) | Default (默认值) | Meaning (含义) |
| --- | --- | --- |
302 303 304 305 306 307 308 309 310
| `spark.cores.max` | (not set) | 当以 “coarse-grained(粗粒度)” 共享模式在 [standalone deploy cluster](spark-standalone.html)[Mesos cluster in "coarse-grained" sharing mode](running-on-mesos.html#mesos-run-modes) 上运行时,从集群(而不是每台计算机)请求应用程序的最大 CPU 内核数量。如果未设置,默认值将是 Spar k的 standalone deploy 管理器上的 `spark.deploy.defaultCores`,或者 Mesos上的无限(所有可用核心)。 |
| `spark.locality.wait` | 3s | 等待启动本地数据任务多长时间,然后在较少本地节点上放弃并启动它。相同的等待将用于跨越多个地点级别(process-local,node-local,rack-local 等所有)。也可以通过设置 `spark.locality.wait.node` 等来自定义每个级别的等待时间。如果任务很长并且局部性较差,则应该增加此设置,但是默认值通常很好。 |
| `spark.locality.wait.node` | spark.locality.wait | 自定义 node locality 等待时间。例如,您可以将其设置为 0 以跳过 node locality,并立即搜索机架位置(如果群集具有机架信息)。 |
| `spark.locality.wait.process` | spark.locality.wait | 自定义 process locality 等待时间。这会影响尝试访问特定执行程序进程中的缓存数据的任务。 |
| `spark.locality.wait.rack` | spark.locality.wait | 自定义 rack locality 等待时间。 |
| `spark.scheduler.maxRegisteredResourcesWaitingTime` | 30s | 在调度开始之前等待资源注册的最大时间量。 |
| `spark.scheduler.minRegisteredResourcesRatio` | 0.8 for YARN mode; 0.0 for standalone mode and Mesos coarse-grained mode | 注册资源(注册资源/总预期资源)的最小比率(资源是 yarn 模式下的执行程序,standalone 模式下的 CPU 核心和 Mesos coarsed-grained 模式 'spark.cores.max' 值是 Mesos coarse-grained 模式下的总体预期资源])在调度开始之前等待。指定为 0.0 和 1.0 之间的双精度。无论是否已达到资源的最小比率,在调度开始之前将等待的最大时间量由配置`spark.scheduler.maxRegisteredResourcesWaitingTime` 控制。 |
| `spark.scheduler.mode` | FIFO | 作业之间的 [scheduling mode (调度模式)](job-scheduling.html#scheduling-within-an-application) 提交到同一个 SparkContext。可以设置为 `FAIR` 使用公平共享,而不是一个接一个排队作业。对多用户服务有用。 |
| `spark.scheduler.revive.interval` | 1s | 调度程序复活工作资源去运行任务的间隔长度。 |
W
init  
wizardforcel 已提交
311 312 313 314 315 316 317 318 319
| `spark.blacklist.enabled` | false | If set to "true", prevent Spark from scheduling tasks on executors that have been blacklisted due to too many task failures. The blacklisting algorithm can be further controlled by the other "spark.blacklist" configuration options. |
| `spark.blacklist.timeout` | 1h | (Experimental) How long a node or executor is blacklisted for the entire application, before it is unconditionally removed from the blacklist to attempt running new tasks. |
| `spark.blacklist.task.maxTaskAttemptsPerExecutor` | 1 | (Experimental) For a given task, how many times it can be retried on one executor before the executor is blacklisted for that task. |
| `spark.blacklist.task.maxTaskAttemptsPerNode` | 2 | (Experimental) For a given task, how many times it can be retried on one node, before the entire node is blacklisted for that task. |
| `spark.blacklist.stage.maxFailedTasksPerExecutor` | 2 | (Experimental) How many different tasks must fail on one executor, within one stage, before the executor is blacklisted for that stage. |
| `spark.blacklist.stage.maxFailedExecutorsPerNode` | 2 | (Experimental) How many different executors are marked as blacklisted for a given stage, before the entire node is marked as failed for the stage. |
| `spark.blacklist.application.maxFailedTasksPerExecutor` | 2 | (Experimental) How many different tasks must fail on one executor, in successful task sets, before the executor is blacklisted for the entire application. Blacklisted executors will be automatically added back to the pool of available resources after the timeout specified by `spark.blacklist.timeout`. Note that with dynamic allocation, though, the executors may get marked as idle and be reclaimed by the cluster manager. |
| `spark.blacklist.application.maxFailedExecutorsPerNode` | 2 | (Experimental) How many different executors must be blacklisted for the entire application, before the node is blacklisted for the entire application. Blacklisted nodes will be automatically added back to the pool of available resources after the timeout specified by `spark.blacklist.timeout`. Note that with dynamic allocation, though, the executors on the node may get marked as idle and be reclaimed by the cluster manager. |
| `spark.blacklist.killBlacklistedExecutors` | false | (Experimental) If set to "true", allow Spark to automatically kill, and attempt to re-create, executors when they are blacklisted. Note that, when an entire node is added to the blacklist, all of the executors on that node will be killed. |
320 321 322 323 324 325
| `spark.speculation` | false | 如果设置为 "true",则执行任务的推测执行。这意味着如果一个或多个任务在一个阶段中运行缓慢,则将重新启动它们。 |
| `spark.speculation.interval` | 100ms | Spark 检查要推测的任务的时间间隔。 |
| `spark.speculation.multiplier` | 1.5 | 一个任务的速度可以比推测的平均值慢多少倍。 |
| `spark.speculation.quantile` | 0.75 | 对特定阶段启用推测之前必须完成的任务的分数。 |
| `spark.task.cpus` | 1 | 要为每个任务分配的核心数。 |
| `spark.task.maxFailures` | 4 | 放弃作业之前任何特定任务的失败次数。分散在不同任务中的故障总数不会导致作业失败; 一个特定的任务允许失败这个次数。应大于或等于 1\. 允许重试次数=此值 - 1\. |
W
init  
wizardforcel 已提交
326 327 328 329 330 331 332 333 334 335
| `spark.task.reaper.enabled` | false | Enables monitoring of killed / interrupted tasks. When set to true, any task which is killed will be monitored by the executor until that task actually finishes executing. See the other `spark.task.reaper.*` configurations for details on how to control the exact behavior of this monitoring. When set to false (the default), task killing will use an older code path which lacks such monitoring. |
| `spark.task.reaper.pollingInterval` | 10s | When `spark.task.reaper.enabled = true`, this setting controls the frequency at which executors will poll the status of killed tasks. If a killed task is still running when polled then a warning will be logged and, by default, a thread-dump of the task will be logged (this thread dump can be disabled via the `spark.task.reaper.threadDump` setting, which is documented below). |
| `spark.task.reaper.threadDump` | true | When `spark.task.reaper.enabled = true`, this setting controls whether task thread dumps are logged during periodic polling of killed tasks. Set this to false to disable collection of thread dumps. |
| `spark.task.reaper.killTimeout` | -1 | When `spark.task.reaper.enabled = true`, this setting specifies a timeout after which the executor JVM will kill itself if a killed task has not stopped running. The default value, -1, disables this mechanism and prevents the executor from self-destructing. The purpose of this setting is to act as a safety-net to prevent runaway uncancellable tasks from rendering an executor unusable. |
| `spark.stage.maxConsecutiveAttempts` | 4 | Number of consecutive stage attempts allowed before a stage is aborted. |

### Dynamic Allocation (动态分配)

| Property Name (属性名称) | Default (默认值) | Meaning (含义) |
| --- | --- | --- |
336
| `spark.dynamicAllocation.enabled` | false | 是否使用动态资源分配,它根据工作负载调整为此应用程序注册的执行程序数量。有关更多详细信息,请参阅 [here](job-scheduling.html#dynamic-resource-allocation) 的说明.
W
init  
wizardforcel 已提交
337

338
这需要设置 `spark.shuffle.service.enabled`。以下配置也相关:`spark.dynamicAllocation.minExecutors``spark.dynamicAllocation.maxExecutors``spark.dynamicAllocation.initialExecutors`。 |
339 340
| `spark.dynamicAllocation.executorIdleTimeout` | 60s | 如果启用动态分配,并且执行程序已空闲超过此持续时间,则将删除执行程序。有关更多详细信息,请参阅此[description](job-scheduling.html#resource-allocation-policy)。 |
| `spark.dynamicAllocation.cachedExecutorIdleTimeout` | infinity | 如果启用动态分配,并且已缓存数据块的执行程序已空闲超过此持续时间,则将删除执行程序。有关详细信息,请参阅此 [description](job-scheduling.html#resource-allocation-policy)。 |
W
init  
wizardforcel 已提交
341 342
| `spark.dynamicAllocation.initialExecutors` | `spark.dynamicAllocation.minExecutors` | 启用动态分配时要运行的执行程序的初始数.

343 344 345 346 347
如果 `--num-executors`(或 `spark.executor.instances` )被设置并大于此值,它将被用作初始执行器数。 |
| `spark.dynamicAllocation.maxExecutors` | infinity | 启用动态分配的执行程序数量的上限。 |
| `spark.dynamicAllocation.minExecutors` | 0 | 启用动态分配的执行程序数量的下限。 |
| `spark.dynamicAllocation.schedulerBacklogTimeout` | 1s | 如果启用动态分配,并且有超过此持续时间的挂起任务积压,则将请求新的执行者。有关更多详细信息,请参阅此 [description](job-scheduling.html#resource-allocation-policy)。 |
| `spark.dynamicAllocation.sustainedSchedulerBacklogTimeout` | `schedulerBacklogTimeout` | 与 `spark.dynamicAllocation.schedulerBacklogTimeout` 相同,但仅用于后续执行者请求。有关更多详细信息,请参阅此 [description](job-scheduling.html#resource-allocation-policy)。 |
W
init  
wizardforcel 已提交
348 349 350 351 352

### Security (安全)

| Property Name (属性名称) | Default (默认值) | Meaning (含义) |
| --- | --- | --- |
353 354 355 356 357 358
| `spark.acls.enable` | false | 是否开启 Spark acls。如果开启了,它检查用户是否有权限去查看或修改 job。Note this requires the user to be known, so if the user comes across as null no checks are done. UI 利用使用过滤器验证和设置用户。 |
| `spark.admin.acls` | Empty | 逗号分隔的用户或者管理员列表,列表中的用户或管理员有查看和修改所有 Spark job 的权限。如果你运行在一个共享集群,有一组管理员或开发者帮助 debug,这个选项有用。 |
| `spark.admin.acls.groups` | Empty | 具有查看和修改对所有Spark作业的访问权限的组的逗号分隔列表。如果您有一组帮助维护和调试的 administrators 或 developers 可以使用此功能基础设施。在列表中输入 "*" 表示任何组中的任何用户都可以使用 admin 的特权。用户组是从 groups mapping provider 的实例获得的。由 `spark.user.groups.mapping` 指定。检查 entry `spark.user.groups.mapping` 了解更多详细信息。 |
| `spark.user.groups.mapping` | `org.apache.spark.security.ShellBasedGroupsMappingProvider` | 用户的组列表由特征定义的 group mapping service 决定可以通过此属性配置的org.apache.spark.security.GroupMappingServiceProvider. 提供了基于 unix shell 的默认实现 `org.apache.spark.security.ShellBasedGroupsMappingProvider` 可以指定它来解析用户的组列表。     _注意:_ 此实现仅支持基于 Unix/Linux 的环境。Windows 环境是      目前 **不** 支持。但是,通过实现可以支持新的 platform/protocol (平台/协议) trait `org.apache.spark.security.GroupMappingServiceProvider`。 |
| `spark.authenticate` | false | 是否 Spark 验证其内部连接。如果不是运行在 YARN 上,请看 `spark.authenticate.secret`。 |
| `spark.authenticate.secret` | None | 设置密钥用于 spark 组件之间进行身份验证。这需要设置 不启用运行在 yarn 和身份验证。 |
W
init  
wizardforcel 已提交
359 360 361 362 363
| `spark.network.crypto.enabled` | false | Enable encryption using the commons-crypto library for RPC and block transfer service. Requires `spark.authenticate` to be enabled. |
| `spark.network.crypto.keyLength` | 128 | The length in bits of the encryption key to generate. Valid values are 128, 192 and 256. |
| `spark.network.crypto.keyFactoryAlgorithm` | PBKDF2WithHmacSHA1 | The key factory algorithm to use when generating encryption keys. Should be one of the algorithms supported by the javax.crypto.SecretKeyFactory class in the JRE being used. |
| `spark.network.crypto.saslFallback` | true | Whether to fall back to SASL authentication if authentication fails using Spark's internal mechanism. This is useful when the application is connecting to old shuffle services that do not support the internal Spark authentication protocol. On the server side, this can be used to block older clients from authenticating against a new shuffle service. |
| `spark.network.crypto.config.*` | None | Configuration values for the commons-crypto library, such as which cipher implementations to use. The config name should be the name of commons-crypto configuration without the "commons.crypto" prefix. |
364 365 366 367 368 369
| `spark.authenticate.enableSaslEncryption` | false | 身份验证时启用加密通信。这是 block transfer service (块传输服务)和支持 RPC 的端点。 |
| `spark.network.sasl.serverAlwaysEncrypt` | false | 禁用未加密的连接服务,支持 SASL 验证。这是目前支持的外部转移服务。 |
| `spark.core.connection.ack.wait.timeout` | `spark.network.timeout` | 连接在 timing out (超时)和 giving up (放弃)之前等待 ack occur 的时间。为了避免长时间 pause (暂停),如 GC,导致的不希望的超时,你可以设置较大的值。 |
| `spark.modify.acls` | Empty | 逗号分隔的用户列表,列表中的用户有查看 Spark web UI 的权限。默认情况下,只有启动 Spark job 的用户有修改(比如杀死它)权限。在列表中加入 "*" 意味着任何用户可以访问以修改它。 |
| `spark.modify.acls.groups` | Empty | 具有对 Spark job 的修改访问权限的组的逗号分隔列表。如果你可以使用这个有一组来自同一个 team 的 administrators 或 developers 可以访问控制工作。在列表中放置 "*" 表示任何组中的任何用户都有权修改 Spark job。用户组是从 `spark.user.groups.mapping` 指定的 groups mapping 提供者的实例获得的。查看 entry `spark.user.groups.mapping` 来了解更多细节。 |
| `spark.ui.filters` | None | 应用到 Spark web UI 的用于 filter class (过滤类)名的逗号分隔的列表。过滤器必须是标准的 [javax servlet Filter](http://docs.oracle.com/javaee/6/api/javax/servlet/Filter.html)。每个过滤器的参数也可以通过设置一个 java 系统属性来指定 spark。java 系统属性:
W
init  
wizardforcel 已提交
370 371 372 373
`spark.<class name of filter>.params='param1=value1,param2=value2'`
例如:
`-Dspark.ui.filters=com.test.filter1`
`-Dspark.com.test.filter1.params='param1=foo,param2=testing'` |
374 375
| `spark.ui.view.acls` | Empty | 逗号分隔的可以访问 Spark web ui 的用户列表。默认情况下只有启动 Spark job 的用户具有 view 访问权限。在列表中放入 "*" 表示任何用户都可以具有访问此 Spark job 的 view。
| `spark.ui.view.acls.groups` | Empty | 逗号分隔的列表,可以查看访问 Spark web ui 的组,以查看 Spark Job 细节。如果您有一组 administrators 或 developers 或可以使用的用户,则可以使用此功能 monitor (监控)提交的 Spark job。在列表中添加 "*" 表示任何组中的任何用户都可以查看 Spark web ui 上的 Spark 工作详细信息。用户组是从 由 `spark.user.groups.mapping` 指定的 groups mapping provider (组映射提供程序)实例获得的。查看 entry `spark.user.groups.mapping` 来了解更多细节。 |
W
init  
wizardforcel 已提交
376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443

### TLS / SSL

| Property Name | Default | Meaning |
| --- | --- | --- |
| `spark.ssl.enabled` | false | Whether to enable SSL connections on all supported protocols.
When `spark.ssl.enabled` is configured, `spark.ssl.protocol` is required.
All the SSL settings like `spark.ssl.xxx` where `xxx` is a particular configuration property, denote the global configuration for all the supported protocols. In order to override the global configuration for the particular protocol, the properties must be overwritten in the protocol-specific namespace.
Use `spark.ssl.YYY.XXX` settings to overwrite the global configuration for particular protocol denoted by `YYY`. Example values for `YYY` include `fs`, `ui`, `standalone`, and `historyServer`. See [SSL Configuration](security.html#ssl-configuration) for details on hierarchical SSL configuration for services. |
| `spark.ssl.[namespace].port` | None | The port where the SSL service will listen on.
The port must be defined within a namespace configuration; see [SSL Configuration](security.html#ssl-configuration) for the available namespaces.
When not set, the SSL port will be derived from the non-SSL port for the same service. A value of "0" will make the service bind to an ephemeral port. |
| `spark.ssl.enabledAlgorithms` | Empty | A comma separated list of ciphers. The specified ciphers must be supported by JVM. The reference list of protocols one can find on [this](https://blogs.oracle.com/java-platform-group/entry/diagnosing_tls_ssl_and_https) page. Note: If not set, it will use the default cipher suites of JVM. |
| `spark.ssl.keyPassword` | None | A password to the private key in key-store. |
| `spark.ssl.keyStore` | None | A path to a key-store file. The path can be absolute or relative to the directory where the component is started in. |
| `spark.ssl.keyStorePassword` | None | A password to the key-store. |
| `spark.ssl.keyStoreType` | JKS | The type of the key-store. |
| `spark.ssl.protocol` | None | A protocol name. The protocol must be supported by JVM. The reference list of protocols one can find on [this](https://blogs.oracle.com/java-platform-group/entry/diagnosing_tls_ssl_and_https) page. |
| `spark.ssl.needClientAuth` | false | Set true if SSL needs client authentication. |
| `spark.ssl.trustStore` | None | A path to a trust-store file. The path can be absolute or relative to the directory where the component is started in. |
| `spark.ssl.trustStorePassword` | None | A password to the trust-store. |
| `spark.ssl.trustStoreType` | JKS | The type of the trust-store. |

### Spark SQL

运行 `SET -v` 命令将显示 SQL 配置的整个列表.



```
// spark is an existing SparkSession
spark.sql("SET -v").show(numRows = 200, truncate = false)
```





```
// spark is an existing SparkSession
spark.sql("SET -v").show(200, false);
```





```
# spark is an existing SparkSession
spark.sql("SET -v").show(n=200, truncate=False)
```





```
sparkR.session()
properties <- sql("SET -v")
showDF(properties, numRows = 200, truncate = FALSE)
```



### Spark Streaming

| Property Name (属性名称) | Default (默认值) | Meaning (含义) |
| --- | --- | --- |
444 445 446 447 448 449 450 451 452 453 454 455
| `spark.streaming.backpressure.enabled` | false | 开启或关闭 Spark Streaming 内部的 backpressure mecheanism(自 1.5 开始)。基于当前批次调度延迟和处理时间,这使得 Spark Streaming 能够控制数据的接收率,因此,系统接收数据的速度会和系统处理的速度一样快。从内部来说,这动态地设置了 receivers 的最大接收率。这个速率上限通过 `spark.streaming.receiver.maxRate``spark.streaming.kafka.maxRatePerPartition` 两个参数设定(如下)。 |
| `spark.streaming.backpressure.initialRate` | not set | 当 backpressure mecheanism 开启时,每个 receiver 接受数据的初始最大值。 |
| `spark.streaming.blockInterval` | 200ms | 在这个时间间隔(ms)内,通过 Spark Streaming receivers 接收的数据在保存到 Spark 之前,chunk 为数据块。推荐的最小值为 50ms。具体细节见 Spark Streaming 指南的 [performance tuning](streaming-programming-guide.html#level-of-parallelism-in-data-receiving) 一节。 |
| `spark.streaming.receiver.maxRate` | not set | 每秒钟每个 receiver 将接收的数据的最大速率(每秒钟的记录数目)。有效的情况下,每个流每秒将最多消耗这个数目的记录。设置这个配置为 0 或者 -1 将会不作限制。细节参见 Spark Streaming 编程指南的 [deployment guide](streaming-programming-guide.html#deploying-applications) 一节。 |
| `spark.streaming.receiver.writeAheadLog.enable` | false | 为 receiver 启用 write ahead logs。所有通过接收器接收输入的数据将被保存到 write ahead logs,以便它在驱动程序故障后进行恢复。见星火流编程指南部署指南了解更多详情。细节参见 Spark Streaming 编程指南的 [deployment guide](streaming-programming-guide.html#deploying-applications) 一节。 |
| `spark.streaming.unpersist` | true | 强制通过 Spark Streaming 生成并持久化的 RDD 自动从 Spark 内存中非持久化。通过 Spark Streaming 接收的原始输入数据也将清除。设置这个属性为 false 允许流应用程序访问原始数据和持久化 RDD,因为它们没有被自动清除。但是它会造成更高的内存花费。 |
| `spark.streaming.stopGracefullyOnShutdown` | false | 如果为 `true`,Spark 将 gracefully (缓慢地)关闭在 JVM 运行的 StreamingContext,而非立即执行。 |
| `spark.streaming.kafka.maxRatePerPartition` | not set | 在使用新的 Kafka direct stream API 时,从每个 kafka 分区读到的最大速率(每秒的记录数目)。详见 [Kafka Integration guide](streaming-kafka-integration.html)。 |
| `spark.streaming.kafka.maxRetries` | 1 | driver 连续重试的最大次数,以此找到每个分区 leader 的最近的(latest)的偏移量(默认为 1 意味着 driver 将尝试最多两次)。仅应用于新的 kafka direct stream API。 |
| `spark.streaming.ui.retainedBatches` | 1000 | 在垃圾回收之前,Spark Streaming UI 和状态API 所能记得的 批处理(batches)数量。 |
| `spark.streaming.driver.writeAheadLog.closeFileAfterWrite` | false | 在写入一条 driver 中的 write ahead log 记录 之后,是否关闭文件。如果你想为 driver 中的元数据 WAL 使用 S3(或者任何文件系统而不支持 flushing),设定为 true。
| `spark.streaming.receiver.writeAheadLog.closeFileAfterWrite` | false | 在写入一条 reveivers 中的 write ahead log 记录 之后,是否关闭文件。如果你想为 reveivers 中的元数据 WAL 使用 S3(或者任何文件系统而不支持 flushing),设定为 true。 |
W
init  
wizardforcel 已提交
456 457 458 459 460

### SparkR

| Property Name (属性名称) | Default (默认值) | Meaning (含义) |
| --- | --- | --- |
461 462 463
| `spark.r.numRBackendThreads` | 2 | 使用 RBackend 处理来自 SparkR 包中的 RPC 调用的线程数。 |
| `spark.r.command` | Rscript | 在 driver 和 worker 两种集群模式下可执行的 R 脚本。 |
| `spark.r.driver.command` | spark.r.command | 在 driver 的 client 模式下可执行的 R 脚本。在集群模式下被忽略。 |
W
init  
wizardforcel 已提交
464 465 466 467 468 469 470 471 472 473 474 475 476 477
| `spark.r.shell.command` | R | Executable for executing sparkR shell in client modes for driver. Ignored in cluster modes. It is the same as environment variable `SPARKR_DRIVER_R`, but take precedence over it. `spark.r.shell.command` is used for sparkR shell while `spark.r.driver.command` is used for running R script. |
| `spark.r.backendConnectionTimeout` | 6000 | Connection timeout set by R process on its connection to RBackend in seconds. |
| `spark.r.heartBeatInterval` | 100 | Interval for heartbeats sent from SparkR backend to R process to prevent connection timeout. |

### GraphX

| Property Name | Default | Meaning |
| --- | --- | --- |
| `spark.graphx.pregel.checkpointInterval` | -1 | Checkpoint interval for graph and message in Pregel. It used to avoid stackOverflowError due to long lineage chains after lots of iterations. The checkpoint is disabled by default. |

### Deploy (部署)

| Property Name (属性名称) | Default (默认值) | Meaning (含义) |
| --- | --- | --- |
478 479 480
| `spark.deploy.recoveryMode` | NONE | 集群模式下,Spark jobs 执行失败或者重启时,恢复提交 Spark jobs 的恢复模式设定。 |
| `spark.deploy.zookeeper.url` | None | 当 `spark.deploy.recoveryMode` 被设定为 ZOOKEEPER,这一配置被用来连接 zookeeper URL。 |
| `spark.deploy.zookeeper.dir` | None | 当 `spark.deploy.recoveryMode` 被设定为 ZOOKEEPER,这一配置被用来设定 zookeeper 目录为 store recovery state。 |
W
init  
wizardforcel 已提交
481 482 483

### Cluster Managers (集群管理器)

取昵称好难啊's avatar
取昵称好难啊 已提交
484
Spark 中的每个集群管理器都有额外的配置选项,这些配置可以在每个模式的页面中找到:
W
init  
wizardforcel 已提交
485 486 487 488 489 490 491 492 493

#### [YARN](running-on-yarn.html#configuration)

#### [Mesos](running-on-mesos.html#configuration)

#### [Standalone Mode](spark-standalone.html#cluster-launch-scripts)

# Environment Variables (环境变量)

494
通过环境变量配置特定的 Spark 设置。环境变量从 Spark 安装目录下的 `conf/spark-env.sh` 脚本读取(或者是 window 环境下的 `conf/spark-env.cmd` )。在 Standalone 和 Mesos 模式下,这个文件可以指定机器的特定信息,比如 hostnames。它也可以为正在运行的 Spark Application 或者提交脚本提供 sourced (来源).
495
注意,当 Spark 被安装,默认情况下 `conf/spark-env.sh` 是不存在的。但是,你可以通过拷贝 `conf/spark-env.sh.template` 来创建它。确保你的拷贝文件时可执行的。`spark-env.sh`:中有有以下变量可以被设置 :
W
init  
wizardforcel 已提交
496 497 498

| Environment Variable (环境变量) | Meaning (含义) |
| --- | --- |
499 500 501 502 503 504
| `JAVA_HOME` | Java 的安装路径(如果不在你的默认 `PATH` 下)。 |
| `PYSPARK_PYTHON` | 在 driver 和 worker 中 PySpark 用到的 Python 二进制可执行文件(如何有默认为 `python2.7`,否则为 `python` )。如果设置了属性 `spark.pyspark.python`,则会优先考虑。 |
| `PYSPARK_DRIVER_PYTHON` | 只在 driver 中 PySpark 用到的 Python 二进制可执行文件(默认为 `PYSPARK_PYTHON` )。如果设置了属性 `spark.pyspark.driver.python` ,则优先考虑。 |
| `SPARKR_DRIVER_R` | SparkR shell 用到的 R 二进制可执行文件(默认为 `R` )。如果设置了属性 `spark.r.shell.command` 则会优先考虑。 |
| `SPARK_LOCAL_IP` | 机器绑定的 IP 地址。 |
| `SPARK_PUBLIC_DNS` | 你的 Spark 程序通知其他机器的 Hostname。 |
W
init  
wizardforcel 已提交
505

取昵称好难啊's avatar
取昵称好难啊 已提交
506
除了以上参数,[standalone cluster scripts](spark-standalone.html#cluster-launch-scripts) 也可以设置其他选项,比如每个机器使用的 CPU 核数和最大内存.
W
init  
wizardforcel 已提交
507

取昵称好难啊's avatar
取昵称好难啊 已提交
508
因为 `spark-env.sh` 是 shell 脚本,一些可以通过程序的方式来设置,比如你可以通过特定的网络接口来计算 `SPARK_LOCAL_IP` .
W
init  
wizardforcel 已提交
509

510
注意:当以 `cluster` mode (集群模式)运行 Spark on YARN 时,环境变量需要通过在您的 `conf/spark-defaults.conf` 文件中 `spark.yarn.appMasterEnv.[EnvironmentVariableName]` 来设定。`cluster` mode (集群模式)下,`spark-env.sh` 中设定的环境变量将不会在 YARN Application Master 过程中反应出来。详见 [YARN-related Spark Properties](running-on-yarn.html#spark-properties).
W
init  
wizardforcel 已提交
511 512 513

# Configuring Logging (配置 Logging)

取昵称好难啊's avatar
取昵称好难啊 已提交
514
Spark 用 [log4j](http://logging.apache.org/log4j/) 生成日志,你可以通过在 `conf` 目录下添加 `log4j.properties` 文件来配置.一种方法是拷贝 `log4j.properties.template` 文件.
W
init  
wizardforcel 已提交
515 516 517

# Overriding configuration directory (覆盖配置目录)

518
如果你想指定不同的配置目录,而不是默认的 “SPARK_HOME/conf”,你可以设置 SPARK_CONF_DIR。Spark 将从这一目录下读取文件( spark-defaults.conf,spark-env.sh,log4j.properties 等)
W
init  
wizardforcel 已提交
519 520 521

# Inheriting Hadoop Cluster Configuration (继承 Hadoop 集群配置)

取昵称好难啊's avatar
取昵称好难啊 已提交
522
如果你想用 Spark 来读写 HDFS,在 Spark 的 classpath 就需要包括两个 Hadoop 配置文件:
W
init  
wizardforcel 已提交
523

取昵称好难啊's avatar
取昵称好难啊 已提交
524 525
*   `hdfs-site.xml`,为 HDFS client 提供 default behaviors (默认的行为).
*   `core-site.xml`,设定默认的文件系统名称.
W
init  
wizardforcel 已提交
526

527
这些配置文件的位置因 Hadoop 版本而异,但是一个常见的位置在 `/etc/hadoop/conf` 内。一些工具创建配置 on-the-fly,但提供了一种机制来下载它们的副本.
W
init  
wizardforcel 已提交
528

取昵称好难啊's avatar
取昵称好难啊 已提交
529
为了使这些文件对 Spark 可见,需要设定 `$SPARK_HOME/spark-env.sh` 中的 `HADOOP_CONF_DIR` 到一个包含配置文件的位置.