This is an automated email from the ASF dual-hosted git repository. kamille pushed a commit to branch update-table-options in repository https://gitbox.apache.org/repos/asf/incubator-horaedb-proto.git
commit 50b61164dc7eb635cdf21974eb67324ec63c0fdd Author: kamille <[email protected]> AuthorDate: Wed Jan 3 17:45:33 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 afd9ab2..c7db74d 100644 --- a/protos/engine/manifest.proto +++ b/protos/engine/manifest.proto @@ -117,6 +117,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 { @@ -171,3 +173,12 @@ enum Compression { SNAPPY = 2; ZSTD = 3; } + +enum MemtableType { + SkipList = 0; + Column = 1; +} + +message LayeredMemtableOptions { + uint64 mutable_segment_switch_threshold = 1; +} --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
