HBASE-24601: Change default Hfile storage policy from HOT to NONE for HDFS (#1940)
Signed-off-by: Guanghao Zhang <zghao@apache.org> Signed-off-by: Duo Zhang <zhangduo@apache.org>
This commit is contained in:
parent
d3c86f4f90
commit
f65b769e8c
|
@ -140,8 +140,8 @@ public class HStore implements Store, HeapSize, StoreConfigInformation,
|
|||
"hbase.server.compactchecker.interval.multiplier";
|
||||
public static final String BLOCKING_STOREFILES_KEY = "hbase.hstore.blockingStoreFiles";
|
||||
public static final String BLOCK_STORAGE_POLICY_KEY = "hbase.hstore.block.storage.policy";
|
||||
// keep in accordance with HDFS default storage policy
|
||||
public static final String DEFAULT_BLOCK_STORAGE_POLICY = "HOT";
|
||||
// "NONE" is not a valid storage policy and means we defer the policy to HDFS
|
||||
public static final String DEFAULT_BLOCK_STORAGE_POLICY = "NONE";
|
||||
public static final int DEFAULT_COMPACTCHECKER_INTERVAL_MULTIPLIER = 1000;
|
||||
public static final int DEFAULT_BLOCKING_STOREFILE_COUNT = 16;
|
||||
|
||||
|
|
Loading…
Reference in New Issue