Skip to content

Commit f05ae89

Browse files
committed
add in ExecutorSummaryInfo for MiMa :(
1 parent 101a698 commit f05ae89

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

core/src/main/scala/org/apache/spark/ui/exec/ExecutorsPage.scala

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,25 @@ import org.apache.spark.status.api.v1.ExecutorSummary
2626
import org.apache.spark.ui.{ToolTips, UIUtils, WebUIPage}
2727
import org.apache.spark.util.Utils
2828

29+
// This isn't even used anymore -- but we need to keep it b/c of a MiMa false positive
30+
private[ui] case class ExecutorSummaryInfo(
31+
id: String,
32+
hostPort: String,
33+
rddBlocks: Int,
34+
memoryUsed: Long,
35+
diskUsed: Long,
36+
activeTasks: Int,
37+
failedTasks: Int,
38+
completedTasks: Int,
39+
totalTasks: Int,
40+
totalDuration: Long,
41+
totalInputBytes: Long,
42+
totalShuffleRead: Long,
43+
totalShuffleWrite: Long,
44+
maxMemory: Long,
45+
executorLogs: Map[String, String])
46+
47+
2948
private[ui] class ExecutorsPage(
3049
parent: ExecutorsTab,
3150
threadDumpEnabled: Boolean)

0 commit comments

Comments
 (0)