Details
-
Improvement
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
3.0.0-alpha-1
-
None
Description
In method computePlanForTable of SimpleRegionNormalizer:
we will skip spliting region if the number of regions in the table is less than hbase.normalizer.min.region.count, even if there is a huge region in the table.
... if (tableRegions == null || tableRegions.size() < minRegionCount) { ... return null; } ... // get region split plan if (splitEnabled) { List<NormalizationPlan> splitPlans = getSplitNormalizationPlan(table); if (splitPlans != null) { plans.addAll(splitPlans); } }
Attachments
Issue Links
- relates to
-
HBASE-25745 Deprecate/Rename config `hbase.normalizer.min.region.count` to `hbase.normalizer.merge.min.region.count`
- Resolved
- links to