Skip to content

Commit

Permalink
HBASE-24601: Change default Hfile storage policy from HOT to NONE for…
Browse files Browse the repository at this point in the history
… HDFS (#1940)

Signed-off-by: Guanghao Zhang <[email protected]>
Signed-off-by: Duo Zhang <[email protected]>
  • Loading branch information
imbajin authored Oct 2, 2021
1 parent d3c86f4 commit f65b769
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit f65b769

Please sign in to comment.