Skip to content
Snippets Groups Projects
Commit e62820c8 authored by Jean-Baptiste Onofré's avatar Jean-Baptiste Onofré Committed by Sean Owen
Browse files

[SPARK-6541] Sort executors by ID (numeric)

"Force" the executor ID sort with Int.

Author: Jean-Baptiste Onofré <jbonofre@apache.org>

Closes #9165 from jbonofre/SPARK-6541.
parent b8f4379b
No related branches found
No related tags found
No related merge requests found
......@@ -89,7 +89,7 @@ sorttable = {
// make it clickable to sort
headrow[i].sorttable_columnindex = i;
headrow[i].sorttable_tbody = table.tBodies[0];
dean_addEvent(headrow[i],"click", function(e) {
dean_addEvent(headrow[i],"click", sorttable.innerSortFunction = function(e) {
if (this.className.search(/\bsorttable_sorted\b/) != -1) {
// if we're already sorted by this column, just
......
......@@ -18,7 +18,7 @@
package org.apache.spark.ui.jobs
import scala.collection.mutable
import scala.xml.Node
import scala.xml.{Unparsed, Node}
import org.apache.spark.ui.{ToolTips, UIUtils}
import org.apache.spark.ui.jobs.UIData.StageUIData
......@@ -52,7 +52,7 @@ private[ui] class ExecutorTable(stageId: Int, stageAttemptId: Int, parent: Stage
<table class={UIUtils.TABLE_CLASS_STRIPED_SORTABLE}>
<thead>
<th>Executor ID</th>
<th id="executorid">Executor ID</th>
<th>Address</th>
<th>Task Time</th>
<th>Total Tasks</th>
......@@ -89,6 +89,15 @@ private[ui] class ExecutorTable(stageId: Int, stageAttemptId: Int, parent: Stage
{createExecutorTable()}
</tbody>
</table>
<script>
{Unparsed {
"""
| window.onload = function() {
| sorttable.innerSortFunction.apply(document.getElementById('executorid'), [])
| };
""".stripMargin
}}
</script>
}
private def createExecutorTable() : Seq[Node] = {
......
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