com.facebook.presto.iceberg.optimizer.IcebergPlanOptimizerProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of presto-iceberg Show documentation
Show all versions of presto-iceberg Show documentation
Presto - Iceberg Connector
The newest version!
/*
* Licensed 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 com.facebook.presto.iceberg.optimizer;
import com.facebook.presto.common.type.TypeManager;
import com.facebook.presto.iceberg.IcebergTransactionManager;
import com.facebook.presto.spi.ConnectorPlanOptimizer;
import com.facebook.presto.spi.connector.ConnectorPlanOptimizerProvider;
import com.facebook.presto.spi.function.FunctionMetadataManager;
import com.facebook.presto.spi.function.StandardFunctionResolution;
import com.facebook.presto.spi.relation.RowExpressionService;
import com.google.common.collect.ImmutableSet;
import com.google.inject.Inject;
import java.util.Set;
import static java.util.Objects.requireNonNull;
public class IcebergPlanOptimizerProvider
implements ConnectorPlanOptimizerProvider
{
private final Set planOptimizers;
private final Set logicalPlanOptimizers;
@Inject
public IcebergPlanOptimizerProvider(
IcebergTransactionManager transactionManager,
RowExpressionService rowExpressionService,
StandardFunctionResolution functionResolution,
FunctionMetadataManager functionMetadataManager,
TypeManager typeManager)
{
requireNonNull(transactionManager, "transactionManager is null");
requireNonNull(rowExpressionService, "rowExpressionService is null");
requireNonNull(functionResolution, "functionResolution is null");
requireNonNull(functionMetadataManager, "functionMetadataManager is null");
requireNonNull(typeManager, "typeManager is null");
this.planOptimizers = ImmutableSet.of(
new IcebergPlanOptimizer(functionResolution, rowExpressionService, functionMetadataManager, transactionManager),
new IcebergFilterPushdown(rowExpressionService, functionResolution, functionMetadataManager, transactionManager, typeManager),
new IcebergParquetDereferencePushDown(transactionManager, rowExpressionService, typeManager));
this.logicalPlanOptimizers = ImmutableSet.of(
new IcebergPlanOptimizer(functionResolution, rowExpressionService, functionMetadataManager, transactionManager),
new IcebergFilterPushdown(rowExpressionService, functionResolution, functionMetadataManager, transactionManager, typeManager),
new IcebergMetadataOptimizer(functionMetadataManager, typeManager, transactionManager, rowExpressionService, functionResolution),
new IcebergParquetDereferencePushDown(transactionManager, rowExpressionService, typeManager),
new IcebergEqualityDeleteAsJoin(functionResolution, transactionManager, typeManager));
}
@Override
public Set getLogicalPlanOptimizers()
{
return logicalPlanOptimizers;
}
@Override
public Set getPhysicalPlanOptimizers()
{
return planOptimizers;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy