This is an automated email from the ASF dual-hosted git repository.
kamille pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-horaedb-proto.git
The following commit(s) were added to refs/heads/dev by this push:
new cb36a32 feat: update table options (#123)
cb36a32 is described below
commit cb36a32b827b3afe88ca04420f7fd21518f15293
Author: kamille <[email protected]>
AuthorDate: Thu Jan 4 13:41:34 2024 +0800
feat: update table options (#123)
---
protos/engine/manifest.proto | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/protos/engine/manifest.proto b/protos/engine/manifest.proto
index afd9ab2..7429316 100644
--- a/protos/engine/manifest.proto
+++ b/protos/engine/manifest.proto
@@ -117,6 +117,7 @@ message TableOptions {
// is still unknown.
bool sampling_segment_duration = 11;
StorageFormatHint storage_format_hint = 12;
+ LayeredMemtableOptions layered_memtable_options = 13;
}
enum UpdateMode {
@@ -171,3 +172,8 @@ enum Compression {
SNAPPY = 2;
ZSTD = 3;
}
+
+message LayeredMemtableOptions {
+ // Layered memtable will be disable when threshold is 0.
+ uint64 mutable_segment_switch_threshold = 1;
+}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]