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.
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)