doc: fix the default compaction strategy for Materialized Views

Fixes https://github.com/scylladb/scylladb/issues/24483

Closes scylladb/scylladb#27725

(cherry picked from commit 84e9b94503)

Closes scylladb/scylladb#28285
This commit is contained in:
Anna Stuchlik
2025-12-17 17:07:43 +01:00
committed by Botond Dénes
parent e8f5ac5fb6
commit ea222186bc

View File

@@ -86,7 +86,7 @@ Compaction Strategies with Materialized Views
Materialized views, just like regular tables, use one of the available :doc:`compaction strategies </architecture/compaction/compaction-strategies>`.
When a materialized view is created, it does not inherit its base table compaction strategy settings, because the data model
of a view does not necessarily have the same characteristics as the one from its base table.
Instead, the default compaction strategy (SizeTieredCompactionStrategy) is used.
Instead, the default compaction strategy (IncrementalCompactionStrategy) is used.
A compaction strategy for a new materialized view can be explicitly set during its creation, using the following command: