[enhance](mtmv)show create materialized view#36188
Merged
morrySnow merged 28 commits intoapache:masterfrom Jun 21, 2024
Merged
Conversation
|
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
Contributor
Author
|
run buildall |
TPC-H: Total hot run time: 40203 ms |
TPC-DS: Total hot run time: 171651 ms |
morrySnow
reviewed
Jun 12, 2024
ClickBench: Total hot run time: 30.41 s |
Contributor
Author
|
run buildall |
TPC-H: Total hot run time: 39862 ms |
TPC-DS: Total hot run time: 173591 ms |
ClickBench: Total hot run time: 31.34 s |
TPC-H: Total hot run time: 39860 ms |
TPC-DS: Total hot run time: 173065 ms |
ClickBench: Total hot run time: 30.89 s |
Contributor
Author
|
run buildall |
TPC-H: Total hot run time: 39623 ms |
TPC-DS: Total hot run time: 173639 ms |
ClickBench: Total hot run time: 30.31 s |
Contributor
Author
|
run buildall |
1 similar comment
Contributor
Author
|
run buildall |
Contributor
Author
|
run performance |
TPC-H: Total hot run time: 40078 ms |
TPC-DS: Total hot run time: 175100 ms |
ClickBench: Total hot run time: 30.49 s |
seawinde
approved these changes
Jun 21, 2024
Contributor
|
PR approved by anyone and no changes requested. |
morrySnow
approved these changes
Jun 21, 2024
Contributor
|
PR approved by at least one committer and no changes requested. |
dataroaring
pushed a commit
that referenced
this pull request
Jun 21, 2024
- support show create materialized view - Prohibit show create table from specifying MTMV mysql> show create MATERIALIZED VIEW mv1\G *************************** 1. row *************************** Materialized View: mv1 Create Materialized View: CREATE MATERIALIZED VIEW mv1 (k1,k2) BUILD DEFERRED REFRESH AUTO ON MANUAL DUPLICATE KEY(`k1`, `k2`) DISTRIBUTED BY RANDOM BUCKETS 2 PROPERTIES ( "replication_allocation" = "tag.location.default: 1", "min_load_replica_num" = "-1", "is_being_synced" = "false", "storage_medium" = "hdd", "storage_format" = "V2", "inverted_index_storage_format" = "V2", "light_schema_change" = "true", "disable_auto_compaction" = "false", "enable_single_replica_compaction" = "false", "group_commit_interval_ms" = "10000", "group_commit_data_bytes" = "134217728" ) AS SELECT * from user1 1 row in set (0.01 sec) mysql> show create table rollup_mv; ERROR 1105 (HY000): errCode = 2, detailMessage = not support async materialized view, please use `show create materialized view`
zddr
added a commit
to zddr/incubator-doris
that referenced
this pull request
Jul 2, 2024
- support show create materialized view - Prohibit show create table from specifying MTMV mysql> show create MATERIALIZED VIEW mv1\G *************************** 1. row *************************** Materialized View: mv1 Create Materialized View: CREATE MATERIALIZED VIEW mv1 (k1,k2) BUILD DEFERRED REFRESH AUTO ON MANUAL DUPLICATE KEY(`k1`, `k2`) DISTRIBUTED BY RANDOM BUCKETS 2 PROPERTIES ( "replication_allocation" = "tag.location.default: 1", "min_load_replica_num" = "-1", "is_being_synced" = "false", "storage_medium" = "hdd", "storage_format" = "V2", "inverted_index_storage_format" = "V2", "light_schema_change" = "true", "disable_auto_compaction" = "false", "enable_single_replica_compaction" = "false", "group_commit_interval_ms" = "10000", "group_commit_data_bytes" = "134217728" ) AS SELECT * from user1 1 row in set (0.01 sec) mysql> show create table rollup_mv; ERROR 1105 (HY000): errCode = 2, detailMessage = not support async materialized view, please use `show create materialized view`
morningman
pushed a commit
that referenced
this pull request
Jul 3, 2024
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
doc: apache/doris-website#870