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 a31036017e9f20e61acec8809de6127780bc596c 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..5ebf601 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 = 2; + } } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
