HBASE-17343 Changing the default type of CompactingMemStore to be BASIC

This commit is contained in:
anastas 2017-05-10 09:02:26 +03:00
parent 3bcc475ee2
commit c5cc81d8e3
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ public class CompactingMemStore extends AbstractMemStore {
public static final String COMPACTING_MEMSTORE_TYPE_KEY =
"hbase.hregion.compacting.memstore.type";
public static final String COMPACTING_MEMSTORE_TYPE_DEFAULT =
String.valueOf(MemoryCompactionPolicy.NONE);
String.valueOf(MemoryCompactionPolicy.BASIC);
// Default fraction of in-memory-flush size w.r.t. flush-to-disk size
public static final String IN_MEMORY_FLUSH_THRESHOLD_FACTOR_KEY =
"hbase.memstore.inmemoryflush.threshold.factor";