From d845a92fc8007085999c8beebca7e7b00ca5322e Mon Sep 17 00:00:00 2001 From: stack Date: Tue, 16 Dec 2014 16:15:11 -0800 Subject: [PATCH] HBASE-12682 compaction thread throttle value is not correct in hbase-default.xml (Jerry He) --- hbase-common/src/main/resources/hbase-default.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hbase-common/src/main/resources/hbase-default.xml b/hbase-common/src/main/resources/hbase-default.xml index 34deaeca9e4..5edf452babb 100644 --- a/hbase-common/src/main/resources/hbase-default.xml +++ b/hbase-common/src/main/resources/hbase-default.xml @@ -780,12 +780,12 @@ possible configurations would overwhelm and obscure the important. hbase.regionserver.thread.compaction.throttle - 2560 + 2684354560 There are two different thread pools for compactions, one for large compactions and the other for small compactions. This helps to keep compaction of lean tables (such as hbase:meta) fast. If a compaction is larger than this threshold, it goes into the large compaction pool. In most cases, the default value is appropriate. Default: - 2 x hbase.hstore.compaction.max x hbase.hregion.memstore.flush.size (which defaults to 128). + 2 x hbase.hstore.compaction.max x hbase.hregion.memstore.flush.size (which defaults to 128MB). The value field assumes that the value of hbase.hregion.memstore.flush.size is unchanged from the default.