-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-22646] [Submission] Spark on Kubernetes - basic submission client #19717
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 1 commit
dcaac45
27c67ff
6d597d0
5b9fa39
5ccadb5
12f2797
c35fe48
faa2849
347ed69
0e8ca01
3a0b8e3
83d0b9c
44c40b1
67bc847
7d2b303
caf2206
2e7810b
cbcd30e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -131,15 +131,15 @@ private[spark] object Config extends Logging { | |
| .checkValue(interval => interval > 0, s"Logging interval must be a positive time value.") | ||
| .createWithDefaultString("1s") | ||
|
|
||
| private[spark] val JARS_DOWNLOAD_LOCATION = | ||
| val JARS_DOWNLOAD_LOCATION = | ||
| ConfigBuilder("spark.kubernetes.mountDependencies.jarsDownloadDir") | ||
| .doc("Location to download jars to in the driver and executors. When using" + | ||
| " spark-submit, this directory must be empty and will be mounted as an empty directory" + | ||
| " volume on the driver and executor pod.") | ||
| .stringConf | ||
| .createWithDefault("/var/spark-data/spark-jars") | ||
|
||
|
|
||
| private[spark] val FILES_DOWNLOAD_LOCATION = | ||
| val FILES_DOWNLOAD_LOCATION = | ||
| ConfigBuilder("spark.kubernetes.mountDependencies.filesDownloadDir") | ||
| .doc("Location to download files to in the driver and executors. When using" + | ||
| " spark-submit, this directory must be empty and will be mounted as an empty directory" + | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
YARN. I'd also simplify:
"This option is currently supported on YARN and Kubernetes."
Same below.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.