Github user tgravescs commented on a diff in the pull request:

    https://github.com/apache/spark/pull/13670#discussion_r70826021
  
    --- Diff: 
core/src/main/resources/org/apache/spark/ui/static/executorspage.js ---
    @@ -0,0 +1,458 @@
    +/*
    + * Licensed to the Apache Software Foundation (ASF) under one or more
    + * contributor license agreements.  See the NOTICE file distributed with
    + * this work for additional information regarding copyright ownership.
    + * The ASF licenses this file to You under the Apache License, Version 2.0
    + * (the "License"); you may not use this file except in compliance with
    + * the License.  You may obtain a copy of the License at
    + *
    + *    http://www.apache.org/licenses/LICENSE-2.0
    + *
    + * Unless required by applicable law or agreed to in writing, software
    + * distributed under the License is distributed on an "AS IS" BASIS,
    + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    + * See the License for the specific language governing permissions and
    + * limitations under the License.
    + */
    +
    +function formatStatus(status, type) {
    +    if (type !== 'display') return status;
    +    if (status) {
    +        return "Active"
    +    } else {
    +        return "Dead"
    +    }
    +}
    +
    +function formatBytes(bytes, type) {
    +    if (type !== 'display') return bytes;
    +    if (bytes == 0) return '0.0 B';
    +    var k = 1000;
    +    var dm = 1;
    +    var sizes = ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'];
    +    var i = Math.floor(Math.log(bytes) / Math.log(k));
    +    return parseFloat((bytes / Math.pow(k, i)).toFixed(dm)) + ' ' + 
sizes[i];
    +}
    +
    +
    +jQuery.extend(jQuery.fn.dataTableExt.oSort, {
    +    "title-numeric-pre": function (a) {
    +        var x = a.match(/title="*(-?[0-9\.]+)/)[1];
    +        return parseFloat(x);
    +    },
    +
    +    "title-numeric-asc": function (a, b) {
    +        return ((a < b) ? -1 : ((a > b) ? 1 : 0));
    +    },
    +
    +    "title-numeric-desc": function (a, b) {
    +        return ((a < b) ? 1 : ((a > b) ? -1 : 0));
    +    }
    +});
    +
    +$(document).ajaxStop($.unblockUI);
    +$(document).ajaxStart(function () {
    +    $.blockUI({message: '<h3>Loading Executors Page...</h3>'});
    +});
    +
    +function createTemplateURI() {
    +    var parser = document.createElement('a');
    +    var words = document.baseURI.split('/');
    +    var ind = words.indexOf("proxy");
    +    if (ind > 0) {
    +        var appId = words[ind + 1];
    +        var baseURI = words.slice(0, ind + 1).join('/') + '/' + appId + 
'/static/executorspage-template.html';
    +        return baseURI;
    +    } else {
    +        ind = words.indexOf("history");
    +        var baseURI = words.slice(0, ind).join('/') + 
'/static/executorspage-template.html';
    +        return baseURI;
    +    }
    +}
    +
    +function createRESTEndPoint() {
    +    var parser = document.createElement('a');
    +    var words = document.baseURI.split('/');
    +    var ind = words.indexOf("proxy");
    +    if (ind > 0) {
    +        var appId = words[ind + 1];
    +        var newBaseURI = words.slice(0, ind + 2).join('/');
    +        return newBaseURI + "/api/v1/applications/" + appId + 
"/allexecutors"
    +    } else {
    +        ind = words.indexOf("history");
    +        var appId = words[ind + 1];
    +        var attemptId = words[ind + 2];
    +        var newBaseURI = words.slice(0, ind).join('/');
    +        if (isNaN(attemptId)) {
    +            return newBaseURI + "/api/v1/applications/" + appId + 
"/allexecutors";
    +        } else {
    +            return newBaseURI + "/api/v1/applications/" + appId + "/" + 
attemptId + "/allexecutors";
    +        }
    +    }
    +}
    +
    +function formatLogsCells(execLogs, type) {
    +    if (type !== 'display') return Object.keys(execLogs);
    +    if (!execLogs) return;
    +    var result = '';
    +    $.each(execLogs, function (logName, logUrl) {
    +        result += '<div><a href=' + logUrl + '>' + logName + '</a></div>'
    +    });
    +    return result;
    +}
    +
    +// Determine Color Opacity from 0.5-1
    +// activeTasks range from 0 to maxTasks
    +function activeTasksAlpha(activeTasks, maxTasks) {
    +    return maxTasks > 0 ? ((activeTasks / maxTasks) * 0.5 + 0.5) : 1;
    +}
    +
    +function activeTasksStyle(activeTasks, maxTasks) {
    +    return activeTasks > 0 ? ("hsla(240, 100%, 50%, " + 
activeTasksAlpha(activeTasks, maxTasks) + ")") : "";
    +}
    +
    +function activeTasksColor(activeTasks, maxTasks) {
    +    return activeTasks > 0 ? ("hsla(240, 100%, 50%, " + 
activeTasksAlpha(activeTasks, maxTasks) + ")") : "";
    +}
    +
    +// failedTasks range max at 10% failure, alpha max = 1
    +function failedTasksAlpha(failedTasks, totalTasks) {
    +    return totalTasks > 0 ?
    +        (Math.min(10 * failedTasks / totalTasks, 1) * 0.5 + 0.5) : 1;
    +}
    +
    +function failedTasksStyle(failedTasks, totalTasks) {
    +    return failedTasks > 0 ?
    +        ("hsla(0, 100%, 50%, " + failedTasksAlpha(failedTasks, totalTasks) 
+ ")") : "";
    +}
    +
    +// totalDuration range from 0 to 50% GC time, alpha max = 1
    +function totalDurationAlpha(totalGCTime, totalDuration) {
    +    return totalDuration > 0 ?
    +        (Math.min(totalGCTime / totalDuration + 0.5, 1)) : 1;
    +}
    +
    +function totalDurationStyle(totalGCTime, totalDuration) {
    +    // Red if GC time over GCTimePercent of total time
    +    // When GCTimePercent is edited change ToolTips.TASK_TIME to match
    +    var GCTimePercent = 0.1;
    +    return (totalGCTime > GCTimePercent * totalDuration) ?
    +        ("hsla(0, 100%, 50%, " + totalDurationAlpha(totalGCTime, 
totalDuration) + ")") : "";
    +}
    +
    +function totalDurationColor(totalGCTime, totalDuration) {
    +    // Red if GC time over GCTimePercent of total time
    +    // When GCTimePercent is edited change ToolTips.TASK_TIME to match
    +    var GCTimePercent = 0.1;
    +    return (totalGCTime > GCTimePercent * totalDuration) ? "white" : 
"black";
    +}
    +
    +$(document).ready(function () {
    +    $.extend($.fn.dataTable.defaults, {
    +        stateSave: true,
    +        lengthMenu: [[20, 40, 60, 100, -1], [20, 40, 60, 100, "All"]],
    +        pageLength: 20
    +    });
    +
    +    executorsSummary = $("#active-executors");
    +
    +    var endPoint = createRESTEndPoint();
    +
    +    $.getJSON(endPoint, function (response, status, jqXHR) {
    +        var summary = [];
    +        var allExecCnt = 0;
    +        var allRDDBlocks = 0;
    +        var allMemoryUsed = 0;
    +        var allMaxMemory = 0;
    +        var allDiskUsed = 0;
    +        var allTotalCores = 0;
    +        var allMaxTasks = 0;
    +        var allActiveTasks = 0;
    +        var allFailedTasks = 0;
    +        var allCompletedTasks = 0;
    +        var allTotalTasks = 0;
    +        var allTotalDuration = 0;
    +        var allTotalGCTime = 0;
    +        var allTotalInputBytes = 0;
    +        var allTotalShuffleRead = 0;
    +        var allTotalShuffleWrite = 0;
    +
    +        var activeExecCnt = 0;
    +        var activeRDDBlocks = 0;
    +        var activeMemoryUsed = 0;
    +        var activeMaxMemory = 0;
    +        var activeDiskUsed = 0;
    +        var activeTotalCores = 0;
    +        var activeMaxTasks = 0;
    +        var activeActiveTasks = 0;
    +        var activeFailedTasks = 0;
    +        var activeCompletedTasks = 0;
    +        var activeTotalTasks = 0;
    +        var activeTotalDuration = 0;
    +        var activeTotalGCTime = 0;
    +        var activeTotalInputBytes = 0;
    +        var activeTotalShuffleRead = 0;
    +        var activeTotalShuffleWrite = 0;
    +
    +        var deadExecCnt = 0;
    +        var deadRDDBlocks = 0;
    +        var deadMemoryUsed = 0;
    +        var deadMaxMemory = 0;
    +        var deadDiskUsed = 0;
    +        var deadTotalCores = 0;
    +        var deadMaxTasks = 0;
    +        var deadActiveTasks = 0;
    +        var deadFailedTasks = 0;
    +        var deadCompletedTasks = 0;
    +        var deadTotalTasks = 0;
    +        var deadTotalDuration = 0;
    +        var deadTotalGCTime = 0;
    +        var deadTotalInputBytes = 0;
    +        var deadTotalShuffleRead = 0;
    +        var deadTotalShuffleWrite = 0;
    +
    +        response.forEach(function (exec) {
    +            allExecCnt += 1;
    +            allRDDBlocks += exec.rddBlocks;
    +            allMemoryUsed += exec.memoryUsed;
    +            allMaxMemory += exec.maxMemory;
    +            allDiskUsed += exec.diskUsed;
    +            allTotalCores += exec.totalCores;
    +            allMaxTasks += exec.maxTasks;
    +            allActiveTasks += exec.activeTasks;
    +            allFailedTasks += exec.failedTasks;
    +            allCompletedTasks += exec.completedTasks;
    +            allTotalTasks += exec.totalTasks;
    +            allTotalDuration += exec.totalDuration;
    +            allTotalGCTime += exec.totalGCTime;
    +            allTotalInputBytes += exec.totalInputBytes;
    +            allTotalShuffleRead += exec.totalShuffleRead;
    +            allTotalShuffleWrite += exec.totalShuffleWrite;
    +            if (exec.isActive) {
    +                activeExecCnt += 1;
    +                activeRDDBlocks += exec.rddBlocks;
    +                activeMemoryUsed += exec.memoryUsed;
    +                activeMaxMemory += exec.maxMemory;
    +                activeDiskUsed += exec.diskUsed;
    +                activeTotalCores += exec.totalCores;
    +                activeMaxTasks += exec.maxTasks;
    +                activeActiveTasks += exec.activeTasks;
    +                activeFailedTasks += exec.failedTasks;
    +                activeCompletedTasks += exec.completedTasks;
    +                activeTotalTasks += exec.totalTasks;
    +                activeTotalDuration += exec.totalDuration;
    +                activeTotalGCTime += exec.totalGCTime;
    +                activeTotalInputBytes += exec.totalInputBytes;
    +                activeTotalShuffleRead += exec.totalShuffleRead;
    +                activeTotalShuffleWrite += exec.totalShuffleWrite;
    +            } else {
    +                deadExecCnt += 1;
    +                deadRDDBlocks += exec.rddBlocks;
    +                deadMemoryUsed += exec.memoryUsed;
    +                deadMaxMemory += exec.maxMemory;
    +                deadDiskUsed += exec.diskUsed;
    +                deadTotalCores += exec.totalCores;
    +                deadMaxTasks += exec.maxTasks;
    +                deadActiveTasks += exec.activeTasks;
    +                deadFailedTasks += exec.failedTasks;
    +                deadCompletedTasks += exec.completedTasks;
    +                deadTotalTasks += exec.totalTasks;
    +                deadTotalDuration += exec.totalDuration;
    +                deadTotalGCTime += exec.totalGCTime;
    +                deadTotalInputBytes += exec.totalInputBytes;
    +                deadTotalShuffleRead += exec.totalShuffleRead;
    +                deadTotalShuffleWrite += exec.totalShuffleWrite;
    +            }
    +        });
    +
    +        var totalSummary = {
    +            "execCnt": ( "Total(" + allExecCnt + ")"),
    +            "allRDDBlocks": allRDDBlocks,
    +            "allMemoryUsed": allMemoryUsed,
    +            "allMaxMemory": allMaxMemory,
    +            "allDiskUsed": allDiskUsed,
    +            "allTotalCores": allTotalCores,
    +            "allMaxTasks": allMaxTasks,
    +            "allActiveTasks": allActiveTasks,
    +            "allFailedTasks": allFailedTasks,
    +            "allCompletedTasks": allCompletedTasks,
    +            "allTotalTasks": allTotalTasks,
    +            "allTotalDuration": allTotalDuration,
    +            "allTotalGCTime": allTotalGCTime,
    +            "allTotalInputBytes": allTotalInputBytes,
    +            "allTotalShuffleRead": allTotalShuffleRead,
    +            "allTotalShuffleWrite": allTotalShuffleWrite
    +        };
    +        var activeSummary = {
    +            "execCnt": ( "Active(" + activeExecCnt + ")"),
    +            "allRDDBlocks": activeRDDBlocks,
    +            "allMemoryUsed": activeMemoryUsed,
    +            "allMaxMemory": activeMaxMemory,
    +            "allDiskUsed": activeDiskUsed,
    +            "allTotalCores": activeTotalCores,
    +            "allMaxTasks": activeMaxTasks,
    +            "allActiveTasks": activeActiveTasks,
    +            "allFailedTasks": activeFailedTasks,
    +            "allCompletedTasks": activeCompletedTasks,
    +            "allTotalTasks": activeTotalTasks,
    +            "allTotalDuration": activeTotalDuration,
    +            "allTotalGCTime": activeTotalGCTime,
    +            "allTotalInputBytes": activeTotalInputBytes,
    +            "allTotalShuffleRead": activeTotalShuffleRead,
    +            "allTotalShuffleWrite": activeTotalShuffleWrite
    +        };
    +        var deadSummary = {
    +            "execCnt": ( "Dead(" + deadExecCnt + ")" ),
    +            "allRDDBlocks": deadRDDBlocks,
    +            "allMemoryUsed": deadMemoryUsed,
    +            "allMaxMemory": deadMaxMemory,
    +            "allDiskUsed": deadDiskUsed,
    +            "allTotalCores": deadTotalCores,
    +            "allMaxTasks": deadMaxTasks,
    +            "allActiveTasks": deadActiveTasks,
    +            "allFailedTasks": deadFailedTasks,
    +            "allCompletedTasks": deadCompletedTasks,
    +            "allTotalTasks": deadTotalTasks,
    +            "allTotalDuration": deadTotalDuration,
    +            "allTotalGCTime": deadTotalGCTime,
    +            "allTotalInputBytes": deadTotalInputBytes,
    +            "allTotalShuffleRead": deadTotalShuffleRead,
    +            "allTotalShuffleWrite": deadTotalShuffleWrite
    +        };
    +
    +        var data = {executors: response, "execSummary": [activeSummary, 
deadSummary, totalSummary]};
    +        $.get(createTemplateURI(), function (template) {
    +
    +            
executorsSummary.append(Mustache.render($(template).filter("#executors-summary-template").html(),
 data));
    +            var selector = "#active-executors-table";
    +            var conf = {
    +                "data": response,
    +                "columns": [
    +                    //{data: 'id'},
    --- End diff --
    
    remove commented out 


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to