HBASE-8334 Enable essential column family support by default
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1467536 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a0aad9686e
commit
64863bb03e
|
@ -441,7 +441,7 @@ public class HRegion implements HeapSize { // , Writable{
|
|||
this.rowLockWaitDuration = conf.getInt("hbase.rowlock.wait.duration",
|
||||
DEFAULT_ROWLOCK_WAIT_DURATION);
|
||||
|
||||
this.isLoadingCfsOnDemandDefault = conf.getBoolean(LOAD_CFS_ON_DEMAND_CONFIG_KEY, false);
|
||||
this.isLoadingCfsOnDemandDefault = conf.getBoolean(LOAD_CFS_ON_DEMAND_CONFIG_KEY, true);
|
||||
this.htableDescriptor = htd;
|
||||
this.rsServices = rsServices;
|
||||
this.threadWakeFrequency = conf.getLong(HConstants.THREAD_WAKE_FREQUENCY, 10 * 1000);
|
||||
|
|
Loading…
Reference in New Issue