You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, when Quesma auto-creates a table in ClickHouse (on ingest to a new index) it uses the MergeTree engine. This is the correct choice in single-node ClickHouse case or in ClickHouse Cloud case (ClickHouse Cloud automatically replaces it with ReplicatedMergeTree ), but for non-cloud multi-node ClickHouse deployments the user might want to use the ReplicatedMergeTree engine instead. Without an easy way to customize this behavior, the only workaround is to manually create (recreate) the table with the desired engine.
(this shortcoming was encountered by a user)
The text was updated successfully, but these errors were encountered:
Currently Quesma auto-creates tables with `MergeTree` engine. It's automatically converted to `ReplicatedMergeTree` in case of ClickHouse cloud, but not in case of a local multi-node cluster and the user can't control it.
Refs #934
Signed-off-by: Piotr Grabowski <[email protected]>
Currently Quesma auto-creates tables with `MergeTree` engine. It's
automatically converted to `ReplicatedMergeTree` in case of ClickHouse
Cloud, but not in case of a local multi-node cluster and the user can't
control it.
If the user has a local multi-node cluster, the tables automatically
created by Quesma won't be replicated - the only solution is to create
them manually with the correct `ReplicatedMergeTree` engine.
Refs #934
Signed-off-by: Piotr Grabowski <[email protected]>
Currently, when Quesma auto-creates a table in ClickHouse (on ingest to a new index) it uses the
MergeTree
engine. This is the correct choice in single-node ClickHouse case or in ClickHouse Cloud case (ClickHouse Cloud automatically replaces it withReplicatedMergeTree
), but for non-cloud multi-node ClickHouse deployments the user might want to use theReplicatedMergeTree
engine instead. Without an easy way to customize this behavior, the only workaround is to manually create (recreate) the table with the desired engine.(this shortcoming was encountered by a user)
The text was updated successfully, but these errors were encountered: