You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by tgravescs <gi...@git.apache.org> on 2016/07/12 18:48:17 UTC

[GitHub] spark pull request #13670: [SPARK-15951] Change Executors Page to use datata...

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

    https://github.com/apache/spark/pull/13670#discussion_r70498405
  
    --- 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>
    +          <th><span data-toggle="tooltip" data-placement="above" title="Status">Status</span></th>
    +          <th>
    +            <span data-toggle="tooltip" data-placement="above" title="RDD Blocks">RDD Blocks</span></th>
    +          <th>
    +            <span data-toggle="tooltip" data-placement="above"
    +                  title="Memory used / total available memory for storage of data like RDD partitions cached in memory.">
    +              Storage Memory</span></th>
    +          <th><span data-toggle="tooltip" data-placement="above" title="Disk Used">Disk Used</span></th>
    --- End diff --
    
    these tool tips (with placement above) are showing up in the upper left corner of the table for me rather then right above the column


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

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