Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* 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 io.trino.cost;
import io.airlift.log.Logger;
import io.trino.Session;
import io.trino.sql.planner.TypeProvider;
import io.trino.sql.planner.iterative.GroupReference;
import io.trino.sql.planner.iterative.Lookup;
import io.trino.sql.planner.iterative.Memo;
import io.trino.sql.planner.plan.PlanNode;
import java.util.IdentityHashMap;
import java.util.Map;
import java.util.Optional;
import static com.google.common.base.Verify.verify;
import static io.trino.SystemSessionProperties.isEnableStatsCalculator;
import static io.trino.SystemSessionProperties.isIgnoreStatsCalculatorFailures;
import static io.trino.sql.planner.iterative.Lookup.noLookup;
import static java.util.Objects.requireNonNull;
public final class CachingStatsProvider
implements StatsProvider
{
private static final Logger log = Logger.get(CachingStatsProvider.class);
private final StatsCalculator statsCalculator;
private final Optional memo;
private final Lookup lookup;
private final Session session;
private final TypeProvider types;
private final TableStatsProvider tableStatsProvider;
private final Map cache = new IdentityHashMap<>();
public CachingStatsProvider(StatsCalculator statsCalculator, Session session, TypeProvider types, TableStatsProvider tableStatsProvider)
{
this(statsCalculator, Optional.empty(), noLookup(), session, types, tableStatsProvider);
}
public CachingStatsProvider(StatsCalculator statsCalculator, Optional memo, Lookup lookup, Session session, TypeProvider types, TableStatsProvider tableStatsProvider)
{
this.statsCalculator = requireNonNull(statsCalculator, "statsCalculator is null");
this.memo = requireNonNull(memo, "memo is null");
this.lookup = requireNonNull(lookup, "lookup is null");
this.session = requireNonNull(session, "session is null");
this.types = requireNonNull(types, "types is null");
this.tableStatsProvider = requireNonNull(tableStatsProvider, "tableStatsProvider is null");
}
@Override
public PlanNodeStatsEstimate getStats(PlanNode node)
{
if (!isEnableStatsCalculator(session)) {
return PlanNodeStatsEstimate.unknown();
}
requireNonNull(node, "node is null");
try {
if (node instanceof GroupReference) {
return getGroupStats((GroupReference) node);
}
PlanNodeStatsEstimate stats = cache.get(node);
if (stats != null) {
return stats;
}
stats = statsCalculator.calculateStats(node, this, lookup, session, types, tableStatsProvider);
verify(cache.put(node, stats) == null, "Stats already set");
return stats;
}
catch (RuntimeException e) {
if (isIgnoreStatsCalculatorFailures(session)) {
log.error(e, "Error occurred when computing stats for query %s", session.getQueryId());
return PlanNodeStatsEstimate.unknown();
}
throw e;
}
}
private PlanNodeStatsEstimate getGroupStats(GroupReference groupReference)
{
int group = groupReference.getGroupId();
Memo memo = this.memo.orElseThrow(() -> new IllegalStateException("CachingStatsProvider without memo cannot handle GroupReferences"));
Optional stats = memo.getStats(group);
if (stats.isPresent()) {
return stats.get();
}
PlanNodeStatsEstimate groupStats = getStats(memo.getNode(group));
verify(memo.getStats(group).isEmpty(), "Group stats already set");
memo.storeStats(group, groupStats);
return groupStats;
}
}