feat(procedure): enable auto split large value (#3628)

* chore: add comments

* chore: remove `pub`

* chore: rename to `merge_multiple_values`

* chore: fix typo

* feat(procedure): enable auto split large value

* chore: apply suggestions from CR

* chore: rename to `max_metadata_value_size`

* chore: remove the NoneAsEmptyString

* chore: set default max_metadata_value_size to 1500KiB
This commit is contained in:
Weny Xu
2024-04-02 20:13:59 +08:00
committed by GitHub
parent a61fb98e4a
commit a0f243c128
10 changed files with 66 additions and 28 deletions

View File

@@ -174,6 +174,7 @@ impl GreptimeDbClusterBuilder {
// We only make max_retry_times and retry_delay large than the default in tests.
max_retry_times: 5,
retry_delay: Duration::from_secs(1),
max_metadata_value_size: None,
},
wal: self.metasrv_wal_config.clone(),
..Default::default()