-
Notifications
You must be signed in to change notification settings - Fork 28.7k
[SPARK-12304][STREAMING] Make Spark Streaming web UI display more fri… #10318
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
…endly Receiver graphs
@zsxwing could you take a look at this again, please? :-) |
Jenkins, test this please |
.map(_.ceil.toLong) | ||
.getOrElse(0L) | ||
|
||
val content = listener.receivedEventRateWithBatchTime.map { case (streamId, eventRates) => |
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.
Why remove sortBy
?
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.
@zsxwing By mistake; gonna add it back.
…more friendly Receiver graphs" This reverts commit 9882333.
…endly Receiver graphs
LGTM pending tests |
retest this please |
Test build #47760 has finished for PR 10318 at commit
|
retest this please |
Test build #47769 has finished for PR 10318 at commit
|
Thanks @proflin, merging to master |
@zsxwing Thanks for reviewing and merging so soon. :-) |
…endly Receiver graphs
Currently, the Spark Streaming web UI uses the same maxY when displays 'Input Rate Times& Histograms' and 'Per-Receiver Times& Histograms'.
This may lead to somewhat un-friendly graphs: once we have tens of Receivers or more, every 'Per-Receiver Times' line almost hits the ground.
This issue proposes to calculate a new maxY against the original one, which is shared among all the `Per-Receiver Times& Histograms' graphs.
Before:

After:
