junegunn commented on code in PR #7076: URL: https://github.com/apache/hbase/pull/7076#discussion_r2139990296
########## hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java: ########## @@ -1040,10 +1040,12 @@ public enum OperationStatusCode { public static final String HFILE_PREAD_ALL_BYTES_ENABLED_KEY = "hfile.pread.all.bytes.enabled"; public static final boolean HFILE_PREAD_ALL_BYTES_ENABLED_DEFAULT = false; - /* - * Minimum percentage of free heap necessary for a successful cluster startup. + /** + * Configuration key for the absolute amount of heap memory that must remain free for a + * RegionServer to start */ - public static final float HBASE_CLUSTER_MINIMUM_MEMORY_THRESHOLD = 0.2f; + public static final String HBASE_REGION_SERVER_FREE_HEAP_MIN_MEMORY_SIZE_KEY = Review Comment: It appears the team wants to avoid making HConstants any bigger if possible. https://github.com/apache/hbase/blob/5bc0f4c3e5aae08045a11fef12c6a9f50aa0ee85/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java#L38 -- 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: issues-unsubscr...@hbase.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org