File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed
core/src/main/scala/org/apache/spark/ui/exec Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,25 @@ import org.apache.spark.status.api.v1.ExecutorSummary
2626import org .apache .spark .ui .{ToolTips , UIUtils , WebUIPage }
2727import 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+
2948private [ui] class ExecutorsPage (
3049 parent : ExecutorsTab ,
3150 threadDumpEnabled : Boolean )
You can’t perform that action at this time.
0 commit comments