imay commented on a change in pull request #2020: Make default rowset type to
config
URL: https://github.com/apache/incubator-doris/pull/2020#discussion_r336827683
##########
File path: be/src/common/config.h
##########
@@ -481,6 +481,12 @@ namespace config {
// config for tablet meta checkpoint
CONF_Int32(tablet_meta_checkpoint_min_new_rowsets_num, "10");
CONF_Int32(tablet_meta_checkpoint_min_interval_secs, "600");
+
+ // config for default rowset type
+ // 0: ALPHA_ROWSET
+ // 1: BETA_ROWSET
+ CONF_Int32(default_rowset_type, "0");
+ CONF_Int32(compaction_rowset_type, "0");
Review comment:
It will be better to use string, and we convert string to enum with code. It
will make sense.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]