Github user tgravescs commented on a diff in the pull request:
https://github.com/apache/spark/pull/13670#discussion_r70499206
--- Diff:
core/src/main/resources/org/apache/spark/ui/static/executorspage-template.html
---
@@ -0,0 +1,102 @@
+<!--
+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.
+-->
+
+<script id="executors-summary-template" type="text/html">
+ <h3 style="clear: left; display: inline-block;">Summary</h3>
+ <div class="container-fluid">
+ <div class="container-fluid">
+ <table id="summary-execs-table" class="table table-striped compact">
+ <thead>
+ <th></th>
+ <th>RDD Blocks</th>
+ <th><span data-toggle="tooltip"
+ title="Memory used / total available memory for storage
of data like RDD partitions cached in memory. ">Storage Memory</span>
+ </th>
+ <th>Disk Used</th>
+ <th>Cores</th>
+ <th>Active Tasks</th>
+ <th>Failed Tasks</th>
+ <th>Complete Tasks</th>
+ <th>Total Tasks</th>
+ <th><span data-toggle="tooltip"
+ title="Shaded red when garbage collection (GC) time is
over 10% of task time">
+ Task Time (GC Time)</span></th>
+ <th><span data-toggle="tooltip"
+ title="Bytes and records read from Hadoop or from Spark
storage.">Input</span></th>
+ <th><span data-toggle="tooltip"
+ title="Total shuffle bytes and records read (includes
both data read locally and data read from remote executors).">
+ Shuffle Read</span></th>
+ <th>
+ <span data-toggle="tooltip" data-placement="left"
+ title="Bytes and records written to disk in order to be
read by a shuffle in a future stage.">
+ Shuffle Write</span>
+ </th>
+ </thead>
+ <tbody>
+ </tbody>
+ </table>
+ </div>
+ </div>
+ <h3 style="clear: left; display: inline-block;">Executors</h3>
+ <div class="container-fluid">
+ <div class="container-fluid">
+ <table id="active-executors-table" class="table table-striped
compact">
+ <thead>
+ <tr>
+ <th>
+ <span data-toggle="tooltip" data-placement="right" title="ID
of the executor">Executor ID</span></th>
+ <th>
+ <span data-toggle="tooltip" data-placement="above"
title="Address">Address</span></th>
--- End diff --
we probably don't need a tool tip if its just re-iterating the column name.
We didn't have them before so unless we are going to put more useful
description I would say just remove.
---
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 [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]