-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-3243] Don't use stale spark-driver.* system properties #2154
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
Conversation
spark-driver.* system properties|
QA tests have started for PR 2154 at commit
|
|
QA tests have finished for PR 2154 at commit
|
|
test this please |
|
QA tests have started for PR 2154 at commit
|
|
QA tests have finished for PR 2154 at commit
|
|
LGTM. Was there any side-effect to this, since it only affects client mode? (I'm guessing maybe reporting in the UI, but that's about it?) |
|
Reporting in the UI, and if the user looks up |
|
Thanks - pulling this in. |
If we set both `spark.driver.extraClassPath` and `--driver-class-path`, then the latter correctly overrides the former. However, the value of the system property `spark.driver.extraClassPath` still uses the former, which is actually not added to the class path. This may cause some confusion... Of course, this also affects other options (i.e. java options, library path, memory...). Author: Andrew Or <andrewor14@gmail.com> Closes #2154 from andrewor14/driver-submit-configs-fix and squashes the following commits: 17ec6fc [Andrew Or] Fix tests 0140836 [Andrew Or] Don't forget spark.driver.memory e39d20f [Andrew Or] Also set spark.driver.extra* configs in client mode (cherry picked from commit 63a053a) Signed-off-by: Patrick Wendell <pwendell@gmail.com>
If we set both `spark.driver.extraClassPath` and `--driver-class-path`, then the latter correctly overrides the former. However, the value of the system property `spark.driver.extraClassPath` still uses the former, which is actually not added to the class path. This may cause some confusion... Of course, this also affects other options (i.e. java options, library path, memory...). Author: Andrew Or <andrewor14@gmail.com> Closes apache#2154 from andrewor14/driver-submit-configs-fix and squashes the following commits: 17ec6fc [Andrew Or] Fix tests 0140836 [Andrew Or] Don't forget spark.driver.memory e39d20f [Andrew Or] Also set spark.driver.extra* configs in client mode
If we set both
spark.driver.extraClassPathand--driver-class-path, then the latter correctly overrides the former. However, the value of the system propertyspark.driver.extraClassPathstill uses the former, which is actually not added to the class path. This may cause some confusion...Of course, this also affects other options (i.e. java options, library path, memory...).