Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Doc] Remove query rewrite limits of External MV (backport #52464) #52518

Merged
merged 3 commits into from
Nov 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -742,11 +742,7 @@ During query rewrite, queries against `customer_view1` and `lineorder_view1` are

## External catalog-based materialized view rewrite

StarRocks supports building asynchronous materialized views on Hive catalogs, Hudi catalogs, and Iceberg catalogs, and transparently rewriting queries with them. External catalog-based materialized views support most of the query rewrite capabilities, but there are some limitations:

- Hudi or JDBC catalog-based materialized views do not support Union rewrite.
- Hudi or JDBC catalog-based materialized views do not support View Delta Join rewrite.
- Hudi or JDBC catalog-based materialized views do not support the incremental refresh of partitions.
StarRocks supports building asynchronous materialized views on Hive catalogs, Hudi catalogs, Iceberg catalogs, and Paimon catalogs, and transparently rewriting queries with them.

## Configure query rewrite

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -740,11 +740,7 @@ ON lo_custkey = c_custkey;

## 基于 External Catalog 构建物化视图

StarRocks 支持基于 Hive Catalog、Hudi Catalog 和 Iceberg Catalog 的外部数据源上构建异步物化视图,并支持透明地改写查询。基于 External Catalog 的物化视图支持大多数查询改写功能,但存在以下限制:

- 基于 Hudi 和 JDBC Catalog 创建的物化视图不支持 Union 改写。
- 基于 Hudi 和 JDBC Catalog 创建的物化视图不支持 View Delta Join 改写。
- 基于 Hudi 和 JDBC Catalog 创建的物化视图不支持分区增量刷新。
StarRocks 支持基于 Hive Catalog、Hudi Catalog、Iceberg Catalog 和 Paimon Catalog 的外部数据源上构建异步物化视图,并支持透明地改写查询。

## 设置物化视图查询改写

Expand Down
Loading