This is an automated email from the ASF dual-hosted git repository. kamille pushed a commit to branch update-pb in repository https://gitbox.apache.org/repos/asf/incubator-horaedb-proto.git
commit 8148163ae2c5b1557bbf17a1280d7e9f58e5d39f Author: kamille <[email protected]> AuthorDate: Wed Jan 3 17:07:10 2024 +0800 update table options. --- protos/engine/manifest.proto | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/protos/engine/manifest.proto b/protos/engine/manifest.proto index fe9c0f2..cd174fa 100644 --- a/protos/engine/manifest.proto +++ b/protos/engine/manifest.proto @@ -134,6 +134,8 @@ message TableOptions { // is still unknown. bool sampling_segment_duration = 11; StorageFormatHint storage_format_hint = 12; + MemtableType memtable_type = 13; + LayeredMemtableOptions layered_memtable_options = 14; } enum UpdateMode { @@ -188,3 +190,12 @@ enum Compression { SNAPPY = 2; ZSTD = 3; } + +enum MemtableType { + SkipList = 0, + Columnar = 1, +} + +message LayeredMemtableOptions { + uint64 mutable_segment_switch_threshold = 1; +} --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
