StatsRecordingPlanOptimizer.java
/*
* 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.sql.planner.optimizations;
import com.facebook.presto.Session;
import com.facebook.presto.spi.VariableAllocator;
import com.facebook.presto.spi.WarningCollector;
import com.facebook.presto.spi.plan.PlanNode;
import com.facebook.presto.spi.plan.PlanNodeIdAllocator;
import com.facebook.presto.sql.planner.OptimizerStatsRecorder;
import com.facebook.presto.sql.planner.TypeProvider;
import com.google.common.annotations.VisibleForTesting;
import static java.util.Objects.requireNonNull;
public final class StatsRecordingPlanOptimizer
implements PlanOptimizer
{
private final OptimizerStatsRecorder stats;
private final PlanOptimizer delegate;
public StatsRecordingPlanOptimizer(OptimizerStatsRecorder stats, PlanOptimizer delegate)
{
this.stats = requireNonNull(stats, "stats is null");
this.delegate = requireNonNull(delegate, "delegate is null");
stats.register(delegate);
}
@VisibleForTesting
public PlanOptimizer getDelegate()
{
return delegate;
}
public final PlanOptimizerResult optimize(
PlanNode plan,
Session session,
TypeProvider types,
VariableAllocator variableAllocator,
PlanNodeIdAllocator idAllocator,
WarningCollector warningCollector)
{
PlanOptimizerResult result;
long duration;
try {
long start = System.nanoTime();
result = delegate.optimize(plan, session, types, variableAllocator, idAllocator, warningCollector);
duration = System.nanoTime() - start;
}
catch (RuntimeException e) {
stats.recordFailure(delegate);
throw e;
}
stats.record(delegate, duration);
return result;
}
}