@@ -114,16 +114,16 @@ private[ui] class StagePage(parent: JobProgressTab) extends WebUIPage("stage") {
114
114
</li >
115
115
<li >
116
116
< span data- toggle= " tooltip"
117
- title= {ToolTips .GC_TIME } data- placement= " right" >
118
- <input type =" checkbox" name ={TaskDetailsClassNames .GC_TIME }/>
119
- <span class =" additional-metric-title" >GC Time </span >
117
+ title= {ToolTips .TASK_DESERIALIZATION_TIME } data- placement= " right" >
118
+ <input type =" checkbox" name ={TaskDetailsClassNames .TASK_DESERIALIZATION_TIME }/>
119
+ <span class =" additional-metric-title" >Task Deserialization Time </span >
120
120
</span >
121
121
</li >
122
122
<li >
123
123
< span data- toggle= " tooltip"
124
- title= {ToolTips .TASK_DESERIALIZATION_TIME } data- placement= " right" >
125
- <input type =" checkbox" name ={TaskDetailsClassNames .TASK_DESERIALIZATION_TIME }/>
126
- <span class =" additional-metric-title" >Task Deserialization Time </span >
124
+ title= {ToolTips .GC_TIME } data- placement= " right" >
125
+ <input type =" checkbox" name ={TaskDetailsClassNames .GC_TIME }/>
126
+ <span class =" additional-metric-title" >GC Time </span >
127
127
</span >
128
128
</li >
129
129
<li >
@@ -154,8 +154,8 @@ private[ui] class StagePage(parent: JobProgressTab) extends WebUIPage("stage") {
154
154
(" Index" , " " ), (" ID" , " " ), (" Attempt" , " " ), (" Status" , " " ), (" Locality Level" , " " ),
155
155
(" Executor ID / Host" , " " ), (" Launch Time" , " " ), (" Duration" , " " ),
156
156
(" Scheduler Delay" , TaskDetailsClassNames .SCHEDULER_DELAY ),
157
- (" GC Time" , TaskDetailsClassNames .GC_TIME ),
158
157
(" Task Deserialization Time" , TaskDetailsClassNames .TASK_DESERIALIZATION_TIME ),
158
+ (" GC Time" , TaskDetailsClassNames .GC_TIME ),
159
159
(" Result Serialization Time" , TaskDetailsClassNames .RESULT_SERIALIZATION_TIME ),
160
160
(" Getting Result Time" , TaskDetailsClassNames .GETTING_RESULT_TIME )) ++
161
161
{if (hasAccumulators) Seq ((" Accumulators" , " " )) else Nil } ++
@@ -390,13 +390,13 @@ private[ui] class StagePage(parent: JobProgressTab) extends WebUIPage("stage") {
390
390
class = {TaskDetailsClassNames .SCHEDULER_DELAY }>
391
391
{UIUtils .formatDuration(schedulerDelay.toLong)}
392
392
</td >
393
- <td sorttable_customkey ={gcTime.toString} class ={TaskDetailsClassNames .GC_TIME }>
394
- {if (gcTime > 0 ) UIUtils .formatDuration(gcTime) else " " }
395
- </td >
396
393
< td sorttable_customkey= {taskDeserializationTime.toString}
397
394
class = {TaskDetailsClassNames .TASK_DESERIALIZATION_TIME }>
398
395
{UIUtils .formatDuration(taskDeserializationTime.toLong)}
399
396
</td >
397
+ <td sorttable_customkey ={gcTime.toString} class ={TaskDetailsClassNames .GC_TIME }>
398
+ {if (gcTime > 0 ) UIUtils .formatDuration(gcTime) else " " }
399
+ </td >
400
400
< td sorttable_customkey= {serializationTime.toString}
401
401
class = {TaskDetailsClassNames .RESULT_SERIALIZATION_TIME }>
402
402
{UIUtils .formatDuration(serializationTime)}
0 commit comments