HBASE-22656 [Metrics] Table metrics 'BatchPut' and 'BatchDelete' are never updated

Signed-off-by: Michael Stack <stack@apache.org>
This commit is contained in:
Reid Chan 2019-07-05 13:51:04 +08:00
parent f84edde148
commit 8222631ee3
1 changed files with 2 additions and 2 deletions

View File

@ -98,7 +98,7 @@ public class MetricsRegionServer {
public void updatePutBatch(TableName tn, long t) {
if (tableMetrics != null && tn != null) {
tableMetrics.updatePut(tn, t);
tableMetrics.updatePutBatch(tn, t);
}
if (t > 1000) {
serverSource.incrSlowPut();
@ -122,7 +122,7 @@ public class MetricsRegionServer {
public void updateDeleteBatch(TableName tn, long t) {
if (tableMetrics != null && tn != null) {
tableMetrics.updateDelete(tn, t);
tableMetrics.updateDeleteBatch(tn, t);
}
if (t > 1000) {
serverSource.incrSlowDelete();