Skip to content

Commit

Permalink
Update docs/en/materialized-view/refreshable-materialized-view.md
Browse files Browse the repository at this point in the history
  • Loading branch information
pmusa authored Nov 29, 2024
1 parent c6dd953 commit 6bf79a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/en/materialized-view/refreshable-materialized-view.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ClickHouse incremental materialized views are enormously powerful and typically

However, there are use cases where this incremental process is not required or is not applicable. Some problems are either incompatible with an incremental approach or don't require real-time updates, with a periodic rebuild being more appropriate. For example, you may want to regularly perform a complete recomputation of a view over the full dataset because it uses a complex join, which is incompatible with an incremental approach.

> Refreshable materialized views can run batch processes performing tasks such as denormalization. Dependencies can be created between refreshable materialized views such that one view depends on the results of another and only executes once it is complete. This can replace scheduled workflows or simple DAGs such as a [dbt](https://www.getdbt.com/) job. To find out more about how to set dependancies between refreshable materialized views go to [CREATE VIEW](https://clickhouse.com/docs/en/sql-reference/statements/create/view#refresh-dependencies), `Dependancies` section.
> Refreshable materialized views can run batch processes performing tasks such as denormalization. Dependencies can be created between refreshable materialized views such that one view depends on the results of another and only executes once it is complete. This can replace scheduled workflows or simple DAGs such as a [dbt](https://www.getdbt.com/) job. To find out more about how to set dependencies between refreshable materialized views go to [CREATE VIEW](https://clickhouse.com/docs/en/sql-reference/statements/create/view#refresh-dependencies), `Dependencies` section.
## How do you refresh a refreshable materialized view?

Expand Down

0 comments on commit 6bf79a6

Please sign in to comment.