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:
Zhihong Yu 2013-10-10 18:22:54 +00:00
parent 341256ae5b
commit 14863dfcab
1 changed files with 2 additions and 0 deletions

View File

@ -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>