Merge pull request #45076 from ClickHouse/new-mergetree-settings

Add docs for 2 new MergeTree settings
This commit is contained in:
Rich Raposa 2023-01-09 16:48:26 -07:00 committed by GitHub
commit 528acecc5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -311,7 +311,7 @@ Possible values:
Default value: 0.5
## replicated_max_parallel_fetches_for_host
## replicated_max_parallel_fetches_for_host
Limit parallel fetches from endpoint (actually pool size).
@ -518,6 +518,26 @@ Possible values:
Default value: -1 (unlimited).
## min_age_to_force_merge_seconds {#min_age_to_force_merge_seconds}
Merge parts if every part in the range is older than the value of `min_age_to_force_merge_seconds`.
Possible values:
- Positive integer.
Default value: 0 — Disabled.
## min_age_to_force_merge_on_partition_only {#min_age_to_force_merge_on_partition_only}
Whether `min_age_to_force_merge_seconds` should be applied only on the entire partition and not on subset.
Possible values:
- true, false
Default value: false
## allow_floating_point_partition_key {#allow_floating_point_partition_key}
Enables to allow floating-point number as a partition key.