HBASE-11255 Negative request num in region load (Liu Shaohui)

This commit is contained in:
Michael Stack 2014-05-27 08:49:41 -07:00
parent 856892cf57
commit 00d550ca13
1 changed files with 2 additions and 2 deletions

View File

@ -1245,8 +1245,8 @@ public class HRegionServer extends HasThread implements
.setRootIndexSizeKB(rootIndexSizeKB) .setRootIndexSizeKB(rootIndexSizeKB)
.setTotalStaticIndexSizeKB(totalStaticIndexSizeKB) .setTotalStaticIndexSizeKB(totalStaticIndexSizeKB)
.setTotalStaticBloomSizeKB(totalStaticBloomSizeKB) .setTotalStaticBloomSizeKB(totalStaticBloomSizeKB)
.setReadRequestsCount((int) r.readRequestsCount.get()) .setReadRequestsCount(r.readRequestsCount.get())
.setWriteRequestsCount((int) r.writeRequestsCount.get()) .setWriteRequestsCount(r.writeRequestsCount.get())
.setTotalCompactingKVs(totalCompactingKVs) .setTotalCompactingKVs(totalCompactingKVs)
.setCurrentCompactedKVs(currentCompactedKVs) .setCurrentCompactedKVs(currentCompactedKVs)
.setCompleteSequenceId(r.lastFlushSeqId); .setCompleteSequenceId(r.lastFlushSeqId);