Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion clickhouse-admin/types/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -201,9 +201,13 @@ impl ReplicaConfig {
<max_tasks_in_queue>1000</max_tasks_in_queue>
</distributed_ddl>
<!-- Disable sparse column serialization, which we expect to not need -->
<merge_tree>
<!-- Disable sparse column serialization, which we expect to not need -->
<ratio_of_defaults_for_sparse_serialization>1.0</ratio_of_defaults_for_sparse_serialization>
<!-- Prevent ClickHouse from setting distributed tables to read-only. -->
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Doc nit, this is setting the local replica to read-only. I.e., it avoids updating the local state with the shared state in the Raft cluster.

<!-- See https://github.com/oxidecomputer/omicron/issues/8595 for details. -->
<replicated_max_ratio_of_wrong_parts>1.0</replicated_max_ratio_of_wrong_parts>
</merge_tree>
{macros}
{remote_servers}
Expand Down
Loading