-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-15951] Change Executors Page to use datatables to support sorting columns and searching #13670
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[SPARK-15951] Change Executors Page to use datatables to support sorting columns and searching #13670
Changes from 5 commits
f66f2ea
8df49af
c0e2afa
3b4962a
c73e905
2453e21
55419aa
fc3dbd7
3454193
5cf514d
31c369a
eb96c5d
43e4a87
fe12d59
286d6d8
faf814f
abf68c7
bc132b1
66df19f
e81d45b
87301c1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -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> | ||
|
||
| <th><span data-toggle="tooltip" data-placement="above" title="Cores">Cores</span></th> | ||
| <th><span data-toggle="tooltip" data-placement="above" title="Active Tasks">Active Tasks</span></th> | ||
| <th><span data-toggle="tooltip" data-placement="above" title="Failed Tasks">Failed Tasks</span></th> | ||
| <th><span data-toggle="tooltip" data-placement="above" title="Complete Tasks">Complete Tasks</span></th> | ||
| <th><span data-toggle="tooltip" data-placement="above" title="Total Tasks">Total Tasks</span></th> | ||
| <th><scan data-toggle="tooltip" data-placement="above" | ||
| title="Shaded red when garbage collection (GC) time is over 10% of task time"> | ||
| Task Time (GC Time) </scan> </th> | ||
| <th><span data-toggle="tooltip" data-placement="above" | ||
| title="Bytes and records read from Hadoop or from Spark storage.">Input</span></th> | ||
| <th> | ||
| <span data-toggle="tooltip" data-placement="above" | ||
| title="Total shuffle bytes and records read (includes both data read locally and data read from remote executors)."> | ||
| Shuffle Read</span></th> | ||
| <th> | ||
| <!-- Place the shuffle write tooltip on the left (rather than the default position | ||
| of on top) because the shuffle write column is the last column on the right side and | ||
| the tooltip is wider than the column, so it doesn't fit on top. --> | ||
| <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> | ||
| <th><span data-toggle="tooltip" data-placement="left" title="Logs">Logs</span></th> | ||
| <th><span data-toggle="tooltip" data-placement="left" title="Thread Dump">Thread Dump</span></th> | ||
| </tr> | ||
| </thead> | ||
| <tbody> | ||
| </tbody> | ||
| </table> | ||
| </div> | ||
| </div> | ||
| </script> | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we make the size of Summary slightly smaller because right now its the same size as "Executors" on the top of the page.