Skip to content

[SPARK-30384][WEBUI]Needs to improve the Column name and Add tooltips for the Fair Scheduler Pool Table #27047

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

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions core/src/main/scala/org/apache/spark/ui/jobs/PoolTable.scala
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,17 @@ private[ui] class PoolTable(pools: Map[Schedulable, PoolData], parent: StagesTab
<table class="table table-bordered table-striped table-condensed sortable table-fixed">
<thead>
<th>Pool Name</th>
<th>Minimum Share</th>
<th>Pool Weight</th>
<th>
<span data-toggle="tooltip" data-placement="top" title="Pool's minimum share of CPU
cores">Minimum Share</span>
</th>
<th>
<span data-toggle="tooltip" data-placement="top" title="Pool's share of cluster resources
relative to others">Pool Weight</span>
</th>
<th>Active Stages</th>
<th>Running Tasks</th>
<th>SchedulingMode</th>
<th>Scheduling Mode</th>
</thead>
<tbody>
{pools.map { case (s, p) => poolRow(request, s, p) }}
Expand Down