-
Notifications
You must be signed in to change notification settings - Fork 28.4k
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
[SPARK-23133][K8S] Fix passing java options to Executor #20296
Conversation
ok to test |
Thanks for fixing this! LGTM. |
LGTM, looks like we missed this when unifying the docker images. Would be good to get this into 2.3.0 as well. |
ok to test |
@ssuchter should I wait for your tests to run? Normal PRB won't touch this file, so I'm leaning towards just pushing this. |
Why is this PR against 2.3 but not master? |
Good point. @andrusha, can you target it to master instead? |
That would explain also why the tests aren't running. |
Normally you should close this and open another PR against the master branch. |
I think one of us should do it then - in the interest of time and making the next RC. |
Yes, we can't change the target branch of a PR. |
Opened #20322. |
Pass through spark java options to the executor in context of docker image. Closes #20296 andrusha: Deployed two version of containers to local k8s, checked that java options were present in the updated image on the running executor. Manual test Author: Andrew Korzhuev <[email protected]> Closes #20322 from foxish/patch-1. (cherry picked from commit f568e9c) Signed-off-by: Marcelo Vanzin <[email protected]>
What changes were proposed in this pull request?
Pass through spark java options to the executor in context of docker image.
How was this patch tested?
Deployed two version of containers to local k8s, checked that java options were present in the updated image on the running executor.