Skip to content

Commit

Permalink
Update Materialized_view.md
Browse files Browse the repository at this point in the history
Signed-off-by: 絵空事スピリット <[email protected]>
  • Loading branch information
EsoragotoSpirit authored Aug 23, 2023
1 parent dec131d commit ff68bb8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/using_starrocks/Materialized_view.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,11 +148,11 @@ GROUP BY order_id;

> **NOTE**
>
> - While creating an asynchronous materialized view, you must specify either the `distribution_desc` or the `refresh_scheme`, or both.
> - While creating an asynchronous materialized view, you must specify either the data distribution strategy or the refresh strategy of the materialized view.
> - You can set different partitioning and bucketing strategies for an asynchronous materialized view from those of its base tables.
> - Currently, StarRocks does not support creating asynchronous materialized views with base tables created with the list partitioning strategy.
> - Currently, asynchronous materialized views do not support the list partitioning strategy.
> - By default, executing a CREATE MATERIALIZED VIEW statement immediately triggers the refresh task, which can consume certain proportion of the system resources. If you want to defer the refresh task, you can add the REFRESH DEFERRED parameter to your CREATE MATERIALIZED VIEW statement.
> - By default, executing a CREATE MATERIALIZED VIEW statement immediately triggers the refresh task, which can consume a certain proportion of the system resources. If you want to defer the refresh task, you can add the REFRESH DEFERRED parameter to your CREATE MATERIALIZED VIEW statement.
> - Asynchronous materialized views support a dynamic partitioning strategy in a longer span. For example, if the base table is partitioned at an interval of one day, you can set the materialized view to be partitioned at an interval of one month.
> - The query statement that is used to create an asynchronous materialized view must include the partition keys and bucket keys of the materialized views.
> - The query statement used to create a materialized view does not support random functions, including rand(), random(), uuid(), and sleep().
Expand Down

0 comments on commit ff68bb8

Please sign in to comment.