HBASE-16153 Correct the config name

'hbase.memestore.inmemoryflush.threshold.factor' (Ram)
This commit is contained in:
Ramkrishna 2016-06-30 17:44:08 +05:30
parent e1d130946b
commit e2566eb0ee
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ public class CompactingMemStore extends AbstractMemStore {
ClassSize.CELL_SKIPLIST_SET + ClassSize.CONCURRENT_SKIPLISTMAP); ClassSize.CELL_SKIPLIST_SET + ClassSize.CONCURRENT_SKIPLISTMAP);
// Default fraction of in-memory-flush size w.r.t. flush-to-disk size // Default fraction of in-memory-flush size w.r.t. flush-to-disk size
public static final String IN_MEMORY_FLUSH_THRESHOLD_FACTOR_KEY = public static final String IN_MEMORY_FLUSH_THRESHOLD_FACTOR_KEY =
"hbase.memestore.inmemoryflush.threshold.factor"; "hbase.memstore.inmemoryflush.threshold.factor";
private static final double IN_MEMORY_FLUSH_THRESHOLD_FACTOR_DEFAULT = 0.25; private static final double IN_MEMORY_FLUSH_THRESHOLD_FACTOR_DEFAULT = 0.25;
private static final Log LOG = LogFactory.getLog(CompactingMemStore.class); private static final Log LOG = LogFactory.getLog(CompactingMemStore.class);