petersomogyi commented on a change in pull request #3967:
URL: https://github.com/apache/hbase/pull/3967#discussion_r773967211
##########
File path:
hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegionServer.java
##########
@@ -1429,14 +1443,12 @@ RegionLoad createRegionLoad(final HRegion r,
RegionLoad.Builder regionLoadBldr,
int storefiles = 0;
int storeRefCount = 0;
int maxCompactedStoreFileRefCount = 0;
- int storeUncompressedSizeMB = 0;
- int storefileSizeMB = 0;
- long storefileSizeByte = 0L;
- int memstoreSizeMB = (int) (r.getMemStoreDataSize() / 1024 / 1024);
- long storefileIndexSizeKB = 0;
- int rootLevelIndexSizeKB = 0;
- int totalStaticIndexSizeKB = 0;
- int totalStaticBloomSizeKB = 0;
+ long storeUncompressedSize = 0;
Review comment:
Please use `0L` for the values.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]