HBASE-12391 Correct a typo in the mob metrics (Jingcheng Du)
This commit is contained in:
parent
e5a1b86dba
commit
3876bb764d
|
@ -529,7 +529,7 @@ class MetricsRegionServerWrapperImpl
|
|||
long tempMobCompactedIntoMobCellsCount = 0;
|
||||
long tempMobCompactedFromMobCellsCount = 0;
|
||||
long tempMobCompactedIntoMobCellsSize = 0;
|
||||
long testMobCompactedFromMobCellsSize = 0;
|
||||
long tempMobCompactedFromMobCellsSize = 0;
|
||||
long tempMobFlushCount = 0;
|
||||
long tempMobFlushedCellsCount = 0;
|
||||
long tempMobFlushedCellsSize = 0;
|
||||
|
@ -562,7 +562,7 @@ class MetricsRegionServerWrapperImpl
|
|||
tempMobCompactedIntoMobCellsCount += mobStore.getMobCompactedIntoMobCellsCount();
|
||||
tempMobCompactedFromMobCellsCount += mobStore.getMobCompactedFromMobCellsCount();
|
||||
tempMobCompactedIntoMobCellsSize += mobStore.getMobCompactedIntoMobCellsSize();
|
||||
testMobCompactedFromMobCellsSize += mobStore.getMobCompactedFromMobCellsSize();
|
||||
tempMobCompactedFromMobCellsSize += mobStore.getMobCompactedFromMobCellsSize();
|
||||
tempMobFlushCount += mobStore.getMobFlushCount();
|
||||
tempMobFlushedCellsCount += mobStore.getMobFlushedCellsCount();
|
||||
tempMobFlushedCellsSize += mobStore.getMobFlushedCellsSize();
|
||||
|
@ -634,7 +634,7 @@ class MetricsRegionServerWrapperImpl
|
|||
mobCompactedIntoMobCellsCount = tempMobCompactedIntoMobCellsCount;
|
||||
mobCompactedFromMobCellsCount = tempMobCompactedFromMobCellsCount;
|
||||
mobCompactedIntoMobCellsSize = tempMobCompactedIntoMobCellsSize;
|
||||
mobCompactedFromMobCellsSize = testMobCompactedFromMobCellsSize;
|
||||
mobCompactedFromMobCellsSize = tempMobCompactedFromMobCellsSize;
|
||||
mobFlushCount = tempMobFlushCount;
|
||||
mobFlushedCellsCount = tempMobFlushedCellsCount;
|
||||
mobFlushedCellsSize = tempMobFlushedCellsSize;
|
||||
|
|
Loading…
Reference in New Issue