-
Notifications
You must be signed in to change notification settings - Fork 28.9k
[SPARK-30887][CORE][DOC] Add version information to the configuration of Deploy #27668
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
ff402f7
d216d43
d55a88d
4da0b91
6d8eb75
5712703
2eec92e
4e7ff54
ee3cdd2
bd6416b
5891872
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,48 +19,59 @@ package org.apache.spark.internal.config | |
|
||
private[spark] object Deploy { | ||
val RECOVERY_MODE = ConfigBuilder("spark.deploy.recoveryMode") | ||
.version("0.8.1") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No JIRA ID, commit ID: d66c01f |
||
.stringConf | ||
.createWithDefault("NONE") | ||
|
||
val RECOVERY_MODE_FACTORY = ConfigBuilder("spark.deploy.recoveryMode.factory") | ||
.version("1.2.0") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. SPARK-1830 commit ID: deefd9d |
||
.stringConf | ||
.createWithDefault("") | ||
|
||
val RECOVERY_DIRECTORY = ConfigBuilder("spark.deploy.recoveryDirectory") | ||
.version("0.8.1") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No JIRA ID, commit ID: d66c01f |
||
.stringConf | ||
.createWithDefault("") | ||
|
||
val ZOOKEEPER_URL = ConfigBuilder("spark.deploy.zookeeper.url") | ||
.doc(s"When `${RECOVERY_MODE.key}` is set to ZOOKEEPER, this " + | ||
"configuration is used to set the zookeeper URL to connect to.") | ||
.version("0.8.1") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No JIRA ID, commit ID: d66c01f |
||
.stringConf | ||
.createOptional | ||
|
||
val ZOOKEEPER_DIRECTORY = ConfigBuilder("spark.deploy.zookeeper.dir") | ||
.version("0.8.1") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No JIRA ID, commit ID: d66c01f |
||
.stringConf | ||
.createOptional | ||
|
||
val RETAINED_APPLICATIONS = ConfigBuilder("spark.deploy.retainedApplications") | ||
.version("0.8.0") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No JIRA ID, commit ID: 46eecd1 |
||
.intConf | ||
.createWithDefault(200) | ||
|
||
val RETAINED_DRIVERS = ConfigBuilder("spark.deploy.retainedDrivers") | ||
.version("1.1.0") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No JIRA ID, commit ID: 7446f5f |
||
.intConf | ||
.createWithDefault(200) | ||
|
||
val REAPER_ITERATIONS = ConfigBuilder("spark.dead.worker.persistence") | ||
.version("0.8.0") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No JIRA ID, commit ID: 46eecd1 |
||
.intConf | ||
.createWithDefault(15) | ||
|
||
val MAX_EXECUTOR_RETRIES = ConfigBuilder("spark.deploy.maxExecutorRetries") | ||
.version("1.6.3") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. SPARK-16956, commit ID: ace458f |
||
.intConf | ||
.createWithDefault(10) | ||
|
||
val SPREAD_OUT_APPS = ConfigBuilder("spark.deploy.spreadOut") | ||
.version("0.6.1") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No JIRA ID, commit ID: bb2b9ff |
||
.booleanConf | ||
.createWithDefault(true) | ||
|
||
val DEFAULT_CORES = ConfigBuilder("spark.deploy.defaultCores") | ||
.version("0.9.0") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No JIRA ID, commit ID: d8bcc8e |
||
.intConf | ||
.createWithDefault(Int.MaxValue) | ||
|
||
|
Uh oh!
There was an error while loading. Please reload this page.