-
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
Closed
Closed
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
dcaac45
Spark on Kubernetes - basic submission client
liyinan926 27c67ff
Addressed first round of review comments
liyinan926 6d597d0
Made Client implement the SparkApplication trait
liyinan926 5b9fa39
Addressed the second round of comments
liyinan926 5ccadb5
Added missing step for supporting local:// dependencies and addressed…
liyinan926 12f2797
Fixed Scala style check errors
liyinan926 c35fe48
Addressed another round of comments
liyinan926 faa2849
Rebased on master and added a constant val for the Client class
liyinan926 347ed69
Addressed another major round of comments
liyinan926 0e8ca01
Addressed one more round of comments
liyinan926 3a0b8e3
Removed mentioning of kubernetes-namespace
liyinan926 83d0b9c
Fixed a couple of bugs found during manual tests
liyinan926 44c40b1
Guard against client mode in SparkContext
liyinan926 67bc847
Added libc6-compat into the base docker image
liyinan926 7d2b303
Addressed latest comments
liyinan926 caf2206
Addressed docs comments
liyinan926 2e7810b
Fixed a comment
liyinan926 cbcd30e
Addressed latest comments
liyinan926 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
Rebased on master and added a constant val for the Client class
- Loading branch information
commit faa2849b57e158471285df51a9a3b1cb0acb6b68
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -406,7 +406,7 @@ class SparkSubmitSuite | |
| childArgsMap.get("--primary-java-resource") should be (Some("file:/home/thejar.jar")) | ||
| childArgsMap.get("--main-class") should be (Some("org.SomeClass")) | ||
| childArgsMap.get("--arg") should be (Some("arg1")) | ||
| mainClass should be ("org.apache.spark.deploy.k8s.submit.Client") | ||
| mainClass should be (KUBERNETES_CLUSTER_SUBMIT_CLASS) | ||
| classpath should have length (0) | ||
| conf.get("spark.executor.memory") should be ("5g") | ||
|
||
| conf.get("spark.driver.memory") should be ("4g") | ||
|
|
||
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.
this should say KUBERNETES
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.