This is an automated email from the ASF dual-hosted git repository. kamille pushed a commit to branch optimize-layered-memtable-opts in repository https://gitbox.apache.org/repos/asf/incubator-horaedb-proto.git
commit e69a28e5b5974e3999a27f985d40ca67b6b9ff37 Author: kamille <[email protected]> AuthorDate: Mon May 27 15:58:56 2024 +0800 add enable fields to decision whether use LayeredMemtable. --- protos/engine/manifest.proto | 3 +++ 1 file changed, 3 insertions(+) diff --git a/protos/engine/manifest.proto b/protos/engine/manifest.proto index f3fdef8..e1eb8d5 100644 --- a/protos/engine/manifest.proto +++ b/protos/engine/manifest.proto @@ -193,4 +193,7 @@ enum Compression { message LayeredMemtableOptions { // Layered memtable will be disable when threshold is 0. uint64 mutable_segment_switch_threshold = 1; + oneof enable { + bool enable_opt = 2; + } } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
