-
Notifications
You must be signed in to change notification settings - Fork 28.5k
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-4705] Handle multiple app attempts event logs, history server. #5432
Closed
Closed
Changes from 25 commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
0eb7722
SPARK-4705: Doing cherry-pick of fix into master
twinkle-g 4c1fc26
SPARK-4705 Incorporating the review comments regarding formatting, wi…
6b2e521
SPARK-4705 Incorporating the review comments regarding formatting, wi…
318525a
SPARK-4705: 1) moved from directory structure to single file, as per …
twinkle-g 5fd5c6f
Fix my broken rebase.
3245aa2
Make app attempts part of the history server model.
88b1de8
Add a test for apps with multiple attempts.
cbe8bba
Attempt ID in listener event should be an option.
ce5ee5d
Misc UI, test, style fixes.
c3e0a82
Move app name to app info, more UI fixes.
657ec18
Fix yarn history URL, app links.
3a14503
Argh scalastyle.
9092af5
Fix HistoryServer test.
07446c6
Disable striping for app id / name when multiple attempts exist.
86de638
Merge branch 'master' into SPARK-4705
9092d39
Merge branch 'master' into SPARK-4705
c14ec19
Merge branch 'master' into SPARK-4705
f1cb9b3
Merge branch 'master' into SPARK-4705
ba34b69
Use Option[String] for attempt id.
d5a9c37
Update JsonProtocol test, make property name consistent.
9d59d92
Scalastyle...
2ad77e7
Missed a reference to the old property name.
1aa309d
Improve sorting of app attempts.
7c381ec
Merge branch 'master' into SPARK-4705
76a3651
Fix log cleaner, add test.
bc885b7
Review feedback.
f66dcc5
Merge branch 'master' into SPARK-4705
7e289fa
Review feedback.
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 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 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
Oops, something went wrong.
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.
any reason not to use an
Option[String]
forattemptId
here (and everywhere else) as well?