-
Notifications
You must be signed in to change notification settings - Fork 3.4k
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 v…
…iew (#27922) Work in process. Support inner join query rewrite by materialized view in some scene. Such as an exmple as following: > mv = "select lineitem.L_LINENUMBER, orders.O_CUSTKEY " + > "from orders " + > "inner join lineitem on lineitem.L_ORDERKEY = orders.O_ORDERKEY " > query = "select lineitem.L_LINENUMBER " + > "from lineitem " + > "inner join orders on lineitem.L_ORDERKEY = orders.O_ORDERKEY "
- Loading branch information
Showing
34 changed files
with
1,613 additions
and
185 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
82 changes: 82 additions & 0 deletions
82
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,82 @@ | ||
// 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; | ||
|
||
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); | ||
|
||
Plan mvRewrittenPlan = | ||
planner.plan(unboundMvPlan, PhysicalProperties.ANY, ExplainLevel.REWRITTEN_PLAN); | ||
Plan mvPlan = mvRewrittenPlan instanceof LogicalResultSink | ||
? (Plan) ((LogicalResultSink) mvRewrittenPlan).child() : mvRewrittenPlan; | ||
// use rewritten plan output expression currently, if expression rewrite fail, | ||
// consider to use the analyzed plan for output expressions only | ||
List<NamedExpression> mvOutputExpressions = mvRewrittenPlan.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
38 changes: 38 additions & 0 deletions
38
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,38 @@ | ||
// 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 { | ||
|
||
/** | ||
* the hook before analyze | ||
*/ | ||
default void beforeAnalyze(NereidsPlanner planner) { | ||
} | ||
|
||
/** | ||
* the hook after analyze | ||
*/ | ||
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
Oops, something went wrong.