-
Notifications
You must be signed in to change notification settings - Fork 29.3k
[SPARK-23529][K8s] Support mounting hostPath volumes for executors #21032
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
Closed
Closed
Changes from 7 commits
Commits
Show all changes
46 commits
Select commit
Hold shift + click to select a range
a7edf6c
Support mounting hostPath volumes for executors
52f0d1c
Read mode for mounted volumes
70d050e
Refactor
463e9b5
Fix style
0a21a19
Add unit tests
87bcc9f
Update comment
c72cbc1
Fix unit tests
4f1e8b9
[SPARK-23871][ML][PYTHON] add python api for VectorAssembler handleIn…
huaxingao 7c7570d
[SPARK-23944][ML] Add the set method for the two LSHModel
lu-wang-dl c7622be
[SPARK-23847][FOLLOWUP][PYTHON][SQL] Actually test [desc|acs]_nulls_[…
HyukjinKwon 87611bb
[MINOR][DOCS] Fix R documentation generation instruction for roxygen2
HyukjinKwon c604d65
[SPARK-23951][SQL] Use actual java class instead of string representa…
hvanhovell 271c891
[SPARK-23960][SQL][MINOR] Mark HashAggregateExec.bufVars as transient
653fe02
[SPARK-6951][CORE] Speed up parsing of event logs during listing.
3cb8204
[SPARK-22941][CORE] Do not exit JVM when submit fails with in-process…
75a1830
[SPARK-22883] ML test for StructuredStreaming: spark.ml.feature, I-M
jkbradley 9d960de
typo rawPredicition changed to rawPrediction
JBauerKogentix e904dfa
Revert "[SPARK-23960][SQL][MINOR] Mark HashAggregateExec.bufVars as t…
gatorsmile 6a2289e
[SPARK-23962][SQL][TEST] Fix race in currentExecutionIds().
squito 0b19122
[SPARK-23762][SQL] UTF8StringBuffer uses MemoryBlock
kiszk 0f93b91
[SPARK-23751][FOLLOW-UP] fix build for scala-2.12
WeichenXu123 682002b
[SPARK-23867][SCHEDULER] use droppedCount in logWarning
14291b0
[SPARK-23748][SS] Fix SS continuous process doesn't support SubqueryA…
jerryshao ab7b961
[SPARK-23942][PYTHON][SQL] Makes collect in PySpark as action for a q…
HyukjinKwon 1018be4
[SPARK-23971] Should not leak Spark sessions across test suites
ericl 4b07036
[SPARK-23815][CORE] Spark writer dynamic partition overwrite mode may…
0323e61
[SPARK-23905][SQL] Add UDF weekday
a83ae0d
[SPARK-22839][K8S] Refactor to unify driver and executor pod builder …
mccheah 4dfd746
[SPARK-23896][SQL] Improve PartitioningAwareFileIndex
gengliangwang 25892f3
[SPARK-23375][SQL] Eliminate unneeded Sort in Optimizer
mgaido91 558f31b
[SPARK-23963][SQL] Properly handle large number of columns in query o…
bersprockets cbb41a0
[SPARK-23966][SS] Refactoring all checkpoint file writing logic in a …
tdas 73f2853
[SPARK-23979][SQL] MultiAlias should not be a CodegenFallback
viirya c096493
[SPARK-23956][YARN] Use effective RPC port in AM registration
gerashegalov 6931022
[SPARK-23917][SQL] Add array_max function
mgaido91 083cf22
[SPARK-21033][CORE][FOLLOW-UP] Update Spillable
wangyum 5003736
[SPARK-9312][ML] Add RawPrediction, numClasses, and numFeatures for O…
lu-wang-dl 0461482
[SPARK-21088][ML] CrossValidator, TrainValidationSplit support collec…
WeichenXu123 c9bb4e1
Support mounting hostPath volumes for executors
1cdd9c8
Read mode for mounted volumes
ac25098
Refactor
a56e80f
Fix style
674a4df
Add unit tests
49c5b01
Update comment
79c30c4
Fix unit tests
86afec3
Merge
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
If we are adding this option, it should be a more general API - allowing PVs, hostpath volumes and emptyDir volumes to be mounted. In the near future, hostpath volumes will be superseded by local PVs - kubernetes/kubernetes#7562
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.
Also, do we need a symmetric option for the drivers also?
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.
Yes. I'll add the driver option after I rebase on #20910 then.