HBASE-22656 [Metrics] Table metrics 'BatchPut' and 'BatchDelete' are never updated (#358)

Signed-off-by: Michael Stack <stack@apache.org>
This commit is contained in:
Reid Chan 2019-07-07 23:15:10 +08:00 committed by GitHub
parent 47f84376ad
commit ebbb0e2987
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -93,7 +93,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();
@ -117,7 +117,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();