Skip to content

Commit ee3cdd2

Browse files
committed
Add JIRA ID and commit ID.
1 parent 4e7ff54 commit ee3cdd2

File tree

1 file changed

+11
-11
lines changed
  • core/src/main/scala/org/apache/spark/internal/config

1 file changed

+11
-11
lines changed

core/src/main/scala/org/apache/spark/internal/config/Deploy.scala

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,59 +19,59 @@ package org.apache.spark.internal.config
1919

2020
private[spark] object Deploy {
2121
val RECOVERY_MODE = ConfigBuilder("spark.deploy.recoveryMode")
22-
.version("0.8.1")
22+
.version("0.8.1") // No JIRA ID, commit ID is: d66c01f2b6defb3db6c1be99523b734a4d960532
2323
.stringConf
2424
.createWithDefault("NONE")
2525

2626
val RECOVERY_MODE_FACTORY = ConfigBuilder("spark.deploy.recoveryMode.factory")
27-
.version("1.2.0")
27+
.version("1.2.0") // SPARK-1830, commit ID is: deefd9d7377a8091a1d184b99066febd0e9f6afd
2828
.stringConf
2929
.createWithDefault("")
3030

3131
val RECOVERY_DIRECTORY = ConfigBuilder("spark.deploy.recoveryDirectory")
32-
.version("0.8.1")
32+
.version("0.8.1") // No JIRA ID, commit ID is: d66c01f2b6defb3db6c1be99523b734a4d960532
3333
.stringConf
3434
.createWithDefault("")
3535

3636
val ZOOKEEPER_URL = ConfigBuilder("spark.deploy.zookeeper.url")
3737
.doc(s"When `${RECOVERY_MODE.key}` is set to ZOOKEEPER, this " +
3838
"configuration is used to set the zookeeper URL to connect to.")
39-
.version("0.8.1")
39+
.version("0.8.1") // No JIRA ID, commit ID is: d66c01f2b6defb3db6c1be99523b734a4d960532
4040
.stringConf
4141
.createOptional
4242

4343
val ZOOKEEPER_DIRECTORY = ConfigBuilder("spark.deploy.zookeeper.dir")
44-
.version("0.8.1")
44+
.version("0.8.1") // No JIRA ID, commit ID is: d66c01f2b6defb3db6c1be99523b734a4d960532
4545
.stringConf
4646
.createOptional
4747

4848
val RETAINED_APPLICATIONS = ConfigBuilder("spark.deploy.retainedApplications")
49-
.version("0.8.0")
49+
.version("0.8.0") // No JIRA ID, commit ID is: 46eecd110a4017ea0c86cbb1010d0ccd6a5eb2ef
5050
.intConf
5151
.createWithDefault(200)
5252

5353
val RETAINED_DRIVERS = ConfigBuilder("spark.deploy.retainedDrivers")
54-
.version("1.1.0")
54+
.version("1.1.0") // No JIRA ID, commit ID is: 7446f5ff93142d2dd5c79c63fa947f47a1d4db8b
5555
.intConf
5656
.createWithDefault(200)
5757

5858
val REAPER_ITERATIONS = ConfigBuilder("spark.dead.worker.persistence")
59-
.version("0.8.0")
59+
.version("0.8.0") // No JIRA ID, commit ID is: 46eecd110a4017ea0c86cbb1010d0ccd6a5eb2ef
6060
.intConf
6161
.createWithDefault(15)
6262

6363
val MAX_EXECUTOR_RETRIES = ConfigBuilder("spark.deploy.maxExecutorRetries")
64-
.version("1.6.3")
64+
.version("1.6.3") // SPARK-16956, commit ID is: ace458f0330f22463ecf7cbee7c0465e10fba8a8
6565
.intConf
6666
.createWithDefault(10)
6767

6868
val SPREAD_OUT_APPS = ConfigBuilder("spark.deploy.spreadOut")
69-
.version("0.6.1")
69+
.version("0.6.1") // No JIRA ID, commit ID is: bb2b9ff37cd2503cc6ea82c5dd395187b0910af0
7070
.booleanConf
7171
.createWithDefault(true)
7272

7373
val DEFAULT_CORES = ConfigBuilder("spark.deploy.defaultCores")
74-
.version("0.9.0")
74+
.version("0.9.0") // No JIRA ID, commit ID is: d8bcc8e9a095c1b20dd7a17b6535800d39bff80e
7575
.intConf
7676
.createWithDefault(Int.MaxValue)
7777

0 commit comments

Comments
 (0)