Back to home page

OSCL-LXR

 
 

    


0001 <!--
0002 Licensed to the Apache Software Foundation (ASF) under one or more
0003 contributor license agreements.  See the NOTICE file distributed with
0004 this work for additional information regarding copyright ownership.
0005 The ASF licenses this file to You under the Apache License, Version 2.0
0006 (the "License"); you may not use this file except in compliance with
0007 the License.  You may obtain a copy of the License at
0008 
0009 http://www.apache.org/licenses/LICENSE-2.0
0010 
0011 Unless required by applicable law or agreed to in writing, software
0012 distributed under the License is distributed on an "AS IS" BASIS,
0013 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
0014 See the License for the specific language governing permissions and
0015 limitations under the License.
0016 -->
0017 
0018 <script id="executors-summary-template" type="text/html">
0019   <div id="showAdditionalMetrics"></div>
0020   <h4 class="title-table">Summary</h4>
0021   <div class="container-fluid">
0022     <div class="container-fluid">
0023       <table id="summary-execs-table" class="table table-striped compact cell-border">
0024         <thead>
0025         <th></th>
0026         <th>RDD Blocks</th>
0027         <th><span data-toggle="tooltip"
0028                   title="Memory used / total available memory for storage of data like RDD partitions cached in memory.">Storage Memory</span>
0029         </th>
0030         <th>
0031           <span data-toggle="tooltip"
0032                 title="Memory used / total available memory for on heap storage of data like RDD partitions cached in memory.">On Heap Storage Memory</span>
0033         </th>
0034         <th>
0035           <span data-toggle="tooltip"
0036                 title="Memory used / total available memory for off heap storage of data like RDD partitions cached in memory.">Off Heap Storage Memory</span>
0037         </th>
0038         <th>Disk Used</th>
0039         <th>Cores</th>
0040         <th><span data-toggle="tooltip" data-placement="top" title="Number of tasks currently executing. Darker shading highlights executors with more active tasks.">Active Tasks</span></th>
0041         <th><span data-toggle="tooltip" data-placement="top" title="Number of tasks that have failed on this executor. Darker shading highlights executors with a high proportion of failed tasks.">Failed Tasks</span></th>
0042         <th>Complete Tasks</th>
0043         <th>Total Tasks</th>
0044         <th><span data-toggle="tooltip"
0045                   title="Shaded red when garbage collection (GC) time is over 10% of task time">
0046           Task Time (GC Time)</span></th>
0047         <th><span data-toggle="tooltip"
0048                   title="Bytes and records read from Hadoop or from Spark storage.">Input</span></th>
0049         <th><span data-toggle="tooltip"
0050                   title="Total shuffle bytes and records read (includes both data read locally and data read from remote executors).">
0051           Shuffle Read</span></th>
0052         <th>
0053           <span data-toggle="tooltip" data-placement="top"
0054                 title="Bytes and records written to disk in order to be read by a shuffle in a future stage.">
0055             Shuffle Write</span>
0056         </th>
0057         <th>
0058           <span data-toggle="tooltip" data-placement="top"
0059                 title="Number of executors blacklisted by the scheduler due to task failures.">
0060             Blacklisted</span>
0061         </th>
0062         </thead>
0063         <tbody>
0064         </tbody>
0065       </table>
0066     </div>
0067   </div>
0068   <h4 class="title-table">Executors</h4>
0069   <div class="container-fluid">
0070     <div class="container-fluid">
0071       <table id="active-executors-table" class="table table-striped compact cell-border">
0072         <thead>
0073         <tr>
0074           <th>Executor ID</th>
0075           <th>Address</th>
0076           <th>Status</th>
0077           <th>RDD Blocks</th>
0078           <th>
0079             <span data-toggle="tooltip" data-placement="top"
0080                   title="Memory used / total available memory for storage of data like RDD partitions cached in memory.">
0081               Storage Memory</span></th>
0082           <th>
0083             <span data-toggle="tooltip" data-placement="top"
0084                   title="Memory used / total available memory for on heap storage of data like RDD partitions cached in memory.">
0085               On Heap Storage Memory</span></th>
0086           <th>
0087             <span data-toggle="tooltip"
0088                   title="Memory used / total available memory for off heap storage of data like RDD partitions cached in memory.">
0089               Off Heap Storage Memory</span></th>
0090           <th>Disk Used</th>
0091           <th>Cores</th>
0092           <th>Resources</th>
0093           <th><span data-toggle="tooltip" data-placement="top" title="Number of tasks currently executing. Darker shading highlights executors with more active tasks.">Active Tasks</span></th>
0094           <th><span data-toggle="tooltip" data-placement="top" title="Number of tasks that have failed on this executor. Darker shading highlights executors with a high proportion of failed tasks.">Failed Tasks</span></th>
0095           <th>Complete Tasks</th>
0096           <th>Total Tasks</th>
0097           <th>
0098             <scan data-toggle="tooltip" data-placement="top"
0099                   title="Shaded red when garbage collection (GC) time is over 10% of task time">
0100               Task Time (GC Time)
0101             </scan>
0102           </th>
0103           <th><span data-toggle="tooltip" data-placement="top"
0104                     title="Bytes and records read from Hadoop or from Spark storage.">Input</span></th>
0105           <th>
0106             <span data-toggle="tooltip" data-placement="top"
0107                   title="Total shuffle bytes and records read (includes both data read locally and data read from remote executors).">
0108               Shuffle Read</span></th>
0109           <th>
0110             <span data-toggle="tooltip" data-placement="top"
0111                   title="Bytes and records written to disk in order to be read by a shuffle in a future stage.">
0112               Shuffle Write</span></th>
0113           <th>Logs</th>
0114           <th>Thread Dump</th>
0115         </tr>
0116         </thead>
0117         <tbody>
0118         </tbody>
0119       </table>
0120     </div>
0121   </div>
0122 </script>