Skip to content
Snippets Groups Projects
Commit f6e7302c authored by Kay Ousterhout's avatar Kay Ousterhout
Browse files

Improve scheduler delay tooltip.

As a result of shivaram's experience debugging long scheduler delay, I think we should improve the tooltip to point people in the right direction if scheduler delay is large.

Author: Kay Ousterhout <kayousterhout@gmail.com>

Closes #1488 from kayousterhout/better_tooltips and squashes the following commits:

22176fd [Kay Ousterhout] Improve scheduler delay tooltip.
parent b86db517
No related branches found
No related tags found
No related merge requests found
......@@ -20,9 +20,9 @@ package org.apache.spark.ui
private[spark] object ToolTips {
val SCHEDULER_DELAY =
"""Scheduler delay includes time to ship the task from the scheduler to
the executor, and time the time to send a message from the executor to the scheduler stating
that the task has completed. When the scheduler becomes overloaded, task completion messages
become queued up, and scheduler delay increases."""
the executor, and time to send the task result from the executor to the scheduler. If
scheduler delay is large, consider decreasing the size of tasks or decreasing the size
of task results."""
val INPUT = "Bytes read from Hadoop or from Spark storage."
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment