-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-21798]: No config to replace deprecated SPARK_CLASSPATH config for launching daemons like History Server #19047
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 11 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
172fc20
[SPARK-21503]: Fixed the issue
81422e0
[SPARK-21503][UI]: Adding changes as per comments
55c6c37
Merge pull request #1 from apache/master
pgandhi999 f454c89
[SPARK-21541]: Spark Logs show incorrect job status for a job that do…
6b7d5c6
Revert "[SPARK-21541]: Spark Logs show incorrect job status for a job…
bc41664
Merge pull request #2 from apache/master
pgandhi999 e46126f
[SPARK-21503]- Making Changes as per comments
9b3cebc
Merge pull request #4 from apache/master
pgandhi999 7f03341
[SPARK-21503]: Reverting Unit Test Code
2d01cab
Merge pull request #5 from apache/master
pgandhi999 eaf63e6
[SPARK-21798]: No config to replace deprecated SPARK_CLASSPATH config…
e421a03
[SPARK-21798]: No config to replace deprecated SPARK_CLASSPATH config…
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
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.
I think it would be better to only support this env variable for daemon process like HistoryServer, ExternalShuffleService and others, like what we did for
SPARK_DAEMON_JAVA_OPTS. Currently with your fix normal Spark application will also honor this env variable.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.
I agree with you on this. I have made the necessary changes.