Skip to content

Commit 70cc87d

Browse files
committed
Streaming Scheduling Delay => Scheduling Delay
1 parent d457277 commit 70cc87d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

streaming/src/main/scala/org/apache/spark/streaming/ui/AllBatchesTable.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ private[ui] abstract class BatchTableBase(tableId: String) {
2626
protected def columns: Seq[Node] = {
2727
<th>Batch Time</th>
2828
<th>Input Size</th>
29-
<th>Streaming Scheduling Delay</th>
29+
<th>Scheduling Delay</th>
3030
<th>Processing Time</th>
3131
}
3232

streaming/src/main/scala/org/apache/spark/streaming/ui/StreamingPage.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ private[ui] class StreamingPage(parent: StreamingTab)
347347
<tr>
348348
<td style="vertical-align: middle;">
349349
<div style="width: 160px;">
350-
<div><strong>Streaming Scheduling Delay</strong></div>
350+
<div><strong>Scheduling Delay</strong></div>
351351
<div>Avg: {schedulingDelay.formattedAvg}</div>
352352
</div>
353353
</td>

streaming/src/test/scala/org/apache/spark/streaming/UISeleniumSuite.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ class UISeleniumSuite
106106

107107
val statTableCells = findAll(cssSelector("#stat-table td")).map(_.text).toSeq
108108
statTableCells.exists(_.contains("Input Rate")) should be (true)
109-
statTableCells.exists(_.contains("Streaming Scheduling Delay")) should be (true)
109+
statTableCells.exists(_.contains("Scheduling Delay")) should be (true)
110110
statTableCells.exists(_.contains("Processing Time")) should be (true)
111111
statTableCells.exists(_.contains("Total Delay")) should be (true)
112112

@@ -116,11 +116,11 @@ class UISeleniumSuite
116116
h4Text.exists(_.matches("Completed Batches \\(last \\d+ out of \\d+\\)")) should be (true)
117117

118118
findAll(cssSelector("""#active-batches-table th""")).map(_.text).toSeq should be {
119-
List("Batch Time", "Input Size", "Streaming Scheduling Delay", "Processing Time",
119+
List("Batch Time", "Input Size", "Scheduling Delay", "Processing Time",
120120
"Status")
121121
}
122122
findAll(cssSelector("""#completed-batches-table th""")).map(_.text).toSeq should be {
123-
List("Batch Time", "Input Size", "Streaming Scheduling Delay", "Processing Time",
123+
List("Batch Time", "Input Size", "Scheduling Delay", "Processing Time",
124124
"Total Delay")
125125
}
126126

0 commit comments

Comments
 (0)