kadirozde commented on code in PR #5545:
URL: https://github.com/apache/hbase/pull/5545#discussion_r1442606527
##########
hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/DefaultStoreEngine.java:
##########
@@ -46,13 +45,16 @@ public class DefaultStoreEngine extends
StoreEngine<DefaultStoreFlusher, RatioBa
"hbase.hstore.defaultengine.compactor.class";
public static final String DEFAULT_COMPACTION_POLICY_CLASS_KEY =
"hbase.hstore.defaultengine.compactionpolicy.class";
+ public static final String DEFAULT_COMPACTION_ENABLE_DUAL_FILE_WRITER_KEY =
+ "hbase.hstore.defaultengine.enable.dualfilewriter";
private static final Class<? extends DefaultStoreFlusher>
DEFAULT_STORE_FLUSHER_CLASS =
DefaultStoreFlusher.class;
private static final Class<? extends DefaultCompactor>
DEFAULT_COMPACTOR_CLASS =
DefaultCompactor.class;
- private static final Class<? extends RatioBasedCompactionPolicy>
DEFAULT_COMPACTION_POLICY_CLASS =
+ public static final Class<? extends RatioBasedCompactionPolicy>
DEFAULT_COMPACTION_POLICY_CLASS =
ExploringCompactionPolicy.class;
+ public static final boolean DEFAULT_ENABLE_DUAL_FILE_WRITER = false;
Review Comment:
I did that couple commits back and will do it again.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]