blob: 38525e2575a9f0a6810b5e7c05d2c7ed1562b367 [file] [log] [blame]
/*
* 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.drill.exec.store.plan.rel;
import org.apache.calcite.plan.RelOptCluster;
import org.apache.calcite.plan.RelOptCost;
import org.apache.calcite.plan.RelOptPlanner;
import org.apache.calcite.plan.RelOptTable;
import org.apache.calcite.plan.RelTraitSet;
import org.apache.calcite.rel.RelWriter;
import org.apache.calcite.rel.metadata.RelMetadataQuery;
import org.apache.calcite.rel.type.RelDataType;
import org.apache.drill.common.expression.SchemaPath;
import org.apache.drill.exec.physical.base.GroupScan;
import org.apache.drill.exec.planner.common.DrillScanRelBase;
import org.apache.drill.exec.store.plan.PluginImplementor;
import org.apache.drill.exec.util.Utilities;
import java.io.IOException;
import java.util.List;
import java.util.stream.Collectors;
import static org.apache.drill.exec.planner.logical.DrillScanRel.STAR_COLUMN_COST;
/**
* Storage plugin table scan rel implementation.
*/
public class StoragePluginTableScan extends DrillScanRelBase implements PluginRel {
private final RelDataType rowType;
public StoragePluginTableScan(RelOptCluster cluster, RelTraitSet traits, GroupScan grpScan,
RelOptTable table, RelDataType rowType) {
super(cluster, traits, grpScan.clone(getColumns(rowType)), table);
this.rowType = rowType;
}
@Override
public void implement(PluginImplementor implementor) throws IOException {
implementor.implement(this);
}
@Override
public DrillScanRelBase copy(RelTraitSet traitSet, GroupScan scan, RelDataType rowType) {
return new StoragePluginTableScan(getCluster(), traitSet, scan, getTable(), rowType);
}
@Override
public double estimateRowCount(RelMetadataQuery mq) {
return getGroupScan().getScanStats(mq).getRecordCount();
}
@Override
public RelDataType deriveRowType() {
return this.rowType;
}
@Override
public RelWriter explainTerms(RelWriter pw) {
return super.explainTerms(pw).item("groupScan", getGroupScan().getDigest());
}
@Override
public boolean canImplement(PluginImplementor implementor) {
return implementor.canImplement(this);
}
@Override
public RelOptCost computeSelfCost(RelOptPlanner planner, RelMetadataQuery mq) {
List<SchemaPath> columns = groupScan.getColumns();
// column count should be adjusted to consider the case of projecting nested columns,
// such a scan should be preferable compared to the scan where root columns are projected only
double columnCount = Utilities.isStarQuery(columns)
? STAR_COLUMN_COST
: Math.pow(getRowType().getFieldCount(), 2) / Math.max(columns.size(), 1);
double rowCount = estimateRowCount(mq);
double valueCount = rowCount * columnCount;
return planner.getCostFactory().makeCost(rowCount, valueCount, 0).multiplyBy(0.1);
}
private static List<SchemaPath> getColumns(RelDataType rowType) {
return rowType.getFieldList().stream()
.map(filed -> filed.isDynamicStar()
? SchemaPath.STAR_COLUMN
: SchemaPath.getSimplePath(filed.getName()))
.collect(Collectors.toList());
}
}