HBASE-8652 Number of compacting KVs is not reset at the end of compaction
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1531067 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
341256ae5b
commit
14863dfcab
|
@ -243,6 +243,7 @@ if (sl != null) {
|
|||
<th>ServerName</th>
|
||||
<th>Num. Compacting KVs</th>
|
||||
<th>Num. Compacted KVs</th>
|
||||
<th>Remaining KVs</th>
|
||||
<th>Compaction Progress</th>
|
||||
</tr>
|
||||
<%java>
|
||||
|
@ -260,6 +261,7 @@ if (sl.getTotalCompactingKVs() > 0) {
|
|||
<td><& serverNameLink; serverName=serverName; serverLoad = sl; &></td>
|
||||
<td><% sl.getTotalCompactingKVs() %></td>
|
||||
<td><% sl.getCurrentCompactedKVs() %></td>
|
||||
<td><% sl.getTotalCompactingKVs() - sl.getCurrentCompactedKVs() %></td>
|
||||
<td><% percentDone %></td>
|
||||
</tr>
|
||||
<%java>
|
||||
|
|
Loading…
Reference in New Issue