forked from apache/doris
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[feature](nereids) Support inner join query rewrite by materialized view
- Loading branch information
Showing
35 changed files
with
1,611 additions
and
208 deletions.
There are no files selected for viewing
This file contains 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
45 changes: 45 additions & 0 deletions
45
fe/fe-core/src/main/java/org/apache/doris/common/MaterializedViewException.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The ASF licenses this file | ||
// to you under the Apache License, Version 2.0 (the | ||
// "License"); you may not use this file except in compliance | ||
// with the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
package org.apache.doris.common; | ||
|
||
/** | ||
* MaterializedViewException | ||
*/ | ||
public class MaterializedViewException extends UserException { | ||
|
||
public MaterializedViewException(String msg, Throwable cause) { | ||
super(msg, cause); | ||
} | ||
|
||
public MaterializedViewException(Throwable cause) { | ||
super(cause); | ||
} | ||
|
||
public MaterializedViewException(String msg, Throwable cause, boolean enableSuppression, | ||
boolean writableStackTrace) { | ||
super(msg, cause, enableSuppression, writableStackTrace); | ||
} | ||
|
||
public MaterializedViewException(String msg) { | ||
super(msg); | ||
} | ||
|
||
public MaterializedViewException(InternalErrorCode errCode, String msg) { | ||
super(errCode, msg); | ||
} | ||
} |
This file contains 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
80 changes: 80 additions & 0 deletions
80
fe/fe-core/src/main/java/org/apache/doris/mtmv/MVCache.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The ASF licenses this file | ||
// to you under the Apache License, Version 2.0 (the | ||
// "License"); you may not use this file except in compliance | ||
// with the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
package org.apache.doris.mtmv; | ||
|
||
import org.apache.doris.catalog.MTMV; | ||
import org.apache.doris.nereids.NereidsPlanner; | ||
import org.apache.doris.nereids.StatementContext; | ||
import org.apache.doris.nereids.parser.NereidsParser; | ||
import org.apache.doris.nereids.properties.PhysicalProperties; | ||
import org.apache.doris.nereids.trees.expressions.NamedExpression; | ||
import org.apache.doris.nereids.trees.plans.Plan; | ||
import org.apache.doris.nereids.trees.plans.commands.ExplainCommand.ExplainLevel; | ||
import org.apache.doris.nereids.trees.plans.logical.LogicalPlan; | ||
import org.apache.doris.nereids.trees.plans.logical.LogicalResultSink; | ||
import org.apache.doris.qe.ConnectContext; | ||
import org.apache.doris.qe.OriginStatement; | ||
|
||
import java.util.List; | ||
import java.util.stream.Collectors; | ||
|
||
/**The cache for materialized view cache */ | ||
public class MVCache { | ||
|
||
// the materialized view plan which should be optimized by the same rules to query | ||
private final Plan logicalPlan; | ||
// this should be shuttle expression with lineage | ||
private final List<NamedExpression> mvOutputExpressions; | ||
// the context when parse, analyze, optimize the mv logical plan | ||
|
||
public MVCache(MTMV materializedView, Plan logicalPlan, List<NamedExpression> mvOutputExpressions) { | ||
this.logicalPlan = logicalPlan; | ||
this.mvOutputExpressions = mvOutputExpressions; | ||
} | ||
|
||
public Plan getLogicalPlan() { | ||
return logicalPlan; | ||
} | ||
|
||
public List<NamedExpression> getMvOutputExpressions() { | ||
return mvOutputExpressions; | ||
} | ||
|
||
public MVCache(Plan logicalPlan, List<NamedExpression> mvOutputExpressions) { | ||
this.logicalPlan = logicalPlan; | ||
this.mvOutputExpressions = mvOutputExpressions; | ||
} | ||
|
||
public static MVCache from(MTMV mtmv, ConnectContext connectContext) { | ||
LogicalPlan unboundMvPlan = new NereidsParser().parseSingle(mtmv.getQuerySql()); | ||
// TODO: connect context set current db when create mv by use database | ||
StatementContext mvSqlStatementContext = new StatementContext(connectContext, | ||
new OriginStatement(mtmv.getQuerySql(), 0)); | ||
NereidsPlanner planner = new NereidsPlanner(mvSqlStatementContext); | ||
|
||
planner.plan(unboundMvPlan, PhysicalProperties.ANY, ExplainLevel.ALL_PLAN); | ||
Plan mvAnalyzedPlan = planner.getAnalyzedPlan(); | ||
Plan mvRewrittenPlan = planner.getRewrittenPlan(); | ||
Plan mvPlan = mvRewrittenPlan instanceof LogicalResultSink | ||
? (Plan) ((LogicalResultSink) mvRewrittenPlan).child() : mvRewrittenPlan; | ||
List<NamedExpression> mvOutputExpressions = mvAnalyzedPlan.getExpressions().stream() | ||
.map(NamedExpression.class::cast) | ||
.collect(Collectors.toList()); | ||
return new MVCache(mvPlan, mvOutputExpressions); | ||
} | ||
} |
This file contains 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
31 changes: 31 additions & 0 deletions
31
fe/fe-core/src/main/java/org/apache/doris/nereids/PlannerHook.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The ASF licenses this file | ||
// to you under the Apache License, Version 2.0 (the | ||
// "License"); you may not use this file except in compliance | ||
// with the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
package org.apache.doris.nereids; | ||
|
||
/** | ||
* optimize plan process has some phase, such as analyze, rewrite, optimize, generate physical plan | ||
* and so on, this hook give a chance to do something in the planning process. | ||
* For example: after analyze plan when query or explain, we should generate materialization context. | ||
*/ | ||
public interface PlannerHook { | ||
default void beforeAnalyze(NereidsPlanner planner) { | ||
} | ||
|
||
default void afterAnalyze(NereidsPlanner planner) { | ||
} | ||
} |
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.