com.hazelcast.jet.sql.impl.opt.physical.JoinPhysicalRule Maven / Gradle / Ivy
/*
* Copyright 2024 Hazelcast Inc.
*
* Licensed under the Hazelcast Community License (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://hazelcast.com/hazelcast-community-license
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.hazelcast.jet.sql.impl.opt.physical;
import com.hazelcast.jet.sql.impl.connector.SqlConnector;
import com.hazelcast.jet.sql.impl.connector.SqlConnectorUtil;
import com.hazelcast.jet.sql.impl.opt.OptUtils;
import com.hazelcast.jet.sql.impl.opt.logical.JoinLogicalRel;
import com.hazelcast.jet.sql.impl.schema.HazelcastTable;
import com.hazelcast.shaded.org.apache.calcite.plan.RelOptRule;
import com.hazelcast.shaded.org.apache.calcite.plan.RelOptRuleCall;
import com.hazelcast.shaded.org.apache.calcite.plan.RelRule;
import com.hazelcast.shaded.org.apache.calcite.rel.RelNode;
import com.hazelcast.shaded.org.apache.calcite.rel.core.JoinRelType;
import com.hazelcast.shaded.org.apache.calcite.rel.core.TableScan;
import org.immutables.value.Value;
import static com.hazelcast.jet.sql.impl.opt.Conventions.LOGICAL;
import static com.hazelcast.jet.sql.impl.opt.Conventions.PHYSICAL;
@Value.Enclosing
public final class JoinPhysicalRule extends RelRule {
@Value.Immutable
public interface Config extends RelRule.Config {
Config DEFAULT = ImmutableJoinPhysicalRule.Config.builder()
.description(JoinPhysicalRule.class.getSimpleName())
.operandSupplier(b0 -> b0.operand(JoinLogicalRel.class)
.trait(LOGICAL)
.inputs(
b1 -> b1.operand(RelNode.class).anyInputs(),
b2 -> b2.operand(RelNode.class).anyInputs()))
.build();
@Override
default RelOptRule toRule() {
return new JoinPhysicalRule(this);
}
}
@SuppressWarnings("checkstyle:DeclarationOrder")
static final RelOptRule INSTANCE = new JoinPhysicalRule(Config.DEFAULT);
private JoinPhysicalRule(Config config) {
super(config);
}
@Override
public void onMatch(RelOptRuleCall call) {
JoinLogicalRel logicalJoin = call.rel(0);
JoinRelType joinType = logicalJoin.getJoinType();
if (OptUtils.isBounded(logicalJoin) && (joinType != JoinRelType.INNER && joinType != JoinRelType.LEFT)) {
throw new RuntimeException("Unexpected joinType: " + joinType);
}
RelNode leftInput = call.rel(1);
RelNode rightInput = call.rel(2);
if (OptUtils.isUnbounded(rightInput)) {
// This rule doesn't support joining of streaming data on the right side.
// Stream can be on the left side.
return;
}
RelNode leftInputConverted = RelRule.convert(leftInput, leftInput.getTraitSet().replace(PHYSICAL));
RelNode rightInputConverted = RelRule.convert(rightInput, rightInput.getTraitSet().replace(PHYSICAL));
// we don't use hash join for unbounded left input because it doesn't refresh the right side
if (OptUtils.isBounded(leftInput)) {
RelNode rel = new JoinHashPhysicalRel(
logicalJoin.getCluster(),
logicalJoin.getTraitSet().replace(PHYSICAL),
leftInputConverted,
rightInputConverted,
logicalJoin.getCondition(),
logicalJoin.getJoinType());
call.transformTo(rel);
}
if (rightInput instanceof TableScan) {
HazelcastTable rightHzTable = rightInput.getTable().unwrap(HazelcastTable.class);
SqlConnector connector = SqlConnectorUtil.getJetSqlConnector(rightHzTable.getTarget());
if (connector.isNestedLoopReaderSupported()) {
RelNode rel2 = new JoinNestedLoopPhysicalRel(
logicalJoin.getCluster(),
OptUtils.toPhysicalConvention(logicalJoin.getTraitSet()),
leftInputConverted,
rightInputConverted,
logicalJoin.getCondition(),
logicalJoin.getJoinType()
);
call.transformTo(rel2);
} else {
call.transformTo(
fail(logicalJoin, connector.typeName() + " connector doesn't support stream-to-batch JOIN")
);
}
}
}
private ShouldNotExecuteRel fail(RelNode node, String message) {
return new ShouldNotExecuteRel(
node.getCluster(),
node.getTraitSet().replace(PHYSICAL),
node.getRowType(),
message
);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy