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:
Zhihong Yu 2013-04-13 02:12:11 +00:00
parent a0aad9686e
commit 64863bb03e
1 changed files with 1 additions and 1 deletions

View File

@ -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);