io.prestosql.sql.planner.planprinter.PlanNodeStatsSummarizer Maven / Gradle / Ivy
/*
* 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.prestosql.sql.planner.planprinter;
import com.google.common.collect.ImmutableMap;
import io.airlift.units.Duration;
import io.prestosql.execution.StageInfo;
import io.prestosql.execution.TaskInfo;
import io.prestosql.operator.HashCollisionsInfo;
import io.prestosql.operator.OperatorStats;
import io.prestosql.operator.PipelineStats;
import io.prestosql.operator.TaskStats;
import io.prestosql.operator.WindowInfo;
import io.prestosql.sql.planner.plan.PlanNodeId;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import static com.google.common.collect.Iterables.getLast;
import static com.google.common.collect.Lists.reverse;
import static io.airlift.units.DataSize.succinctBytes;
import static io.prestosql.util.MoreMaps.mergeMaps;
import static java.util.concurrent.TimeUnit.MILLISECONDS;
import static java.util.stream.Collectors.toList;
public final class PlanNodeStatsSummarizer
{
private PlanNodeStatsSummarizer() {}
public static Map aggregateStageStats(List stageInfos)
{
return aggregateTaskStats(stageInfos.stream()
.flatMap(s -> s.getTasks().stream())
.collect(toList()));
}
public static Map aggregateTaskStats(List taskInfos)
{
Map aggregatedStats = new HashMap<>();
List planNodeStats = taskInfos.stream()
.map(TaskInfo::getStats)
.flatMap(taskStats -> getPlanNodeStats(taskStats).stream())
.collect(toList());
for (PlanNodeStats stats : planNodeStats) {
aggregatedStats.merge(stats.getPlanNodeId(), stats, PlanNodeStats::mergeWith);
}
return aggregatedStats;
}
private static List getPlanNodeStats(TaskStats taskStats)
{
// Best effort to reconstruct the plan nodes from operators.
// Because stats are collected separately from query execution,
// it's possible that some or all of them are missing or out of date.
// For example, a LIMIT clause can cause a query to finish before stats
// are collected from the leaf stages.
Set planNodeIds = new HashSet<>();
Map planNodeInputPositions = new HashMap<>();
Map planNodeInputBytes = new HashMap<>();
Map planNodeOutputPositions = new HashMap<>();
Map planNodeOutputBytes = new HashMap<>();
Map planNodeScheduledMillis = new HashMap<>();
Map planNodeCpuMillis = new HashMap<>();
Map> operatorInputStats = new HashMap<>();
Map> operatorHashCollisionsStats = new HashMap<>();
Map windowNodeStats = new HashMap<>();
for (PipelineStats pipelineStats : taskStats.getPipelines()) {
// Due to eventual consistently collected stats, these could be empty
if (pipelineStats.getOperatorSummaries().isEmpty()) {
continue;
}
Set processedNodes = new HashSet<>();
PlanNodeId inputPlanNode = pipelineStats.getOperatorSummaries().iterator().next().getPlanNodeId();
PlanNodeId outputPlanNode = getLast(pipelineStats.getOperatorSummaries()).getPlanNodeId();
// Gather input statistics
for (OperatorStats operatorStats : pipelineStats.getOperatorSummaries()) {
PlanNodeId planNodeId = operatorStats.getPlanNodeId();
planNodeIds.add(planNodeId);
long scheduledMillis = operatorStats.getAddInputWall().toMillis() + operatorStats.getGetOutputWall().toMillis() + operatorStats.getFinishWall().toMillis();
planNodeScheduledMillis.merge(planNodeId, scheduledMillis, Long::sum);
long cpuMillis = operatorStats.getAddInputCpu().toMillis() + operatorStats.getGetOutputCpu().toMillis() + operatorStats.getFinishCpu().toMillis();
planNodeCpuMillis.merge(planNodeId, cpuMillis, Long::sum);
// A pipeline like hash build before join might link to another "internal" pipelines which provide actual input for this plan node
if (operatorStats.getPlanNodeId().equals(inputPlanNode) && !pipelineStats.isInputPipeline()) {
continue;
}
if (processedNodes.contains(planNodeId)) {
continue;
}
operatorInputStats.merge(planNodeId,
ImmutableMap.of(
operatorStats.getOperatorType(),
new OperatorInputStats(
operatorStats.getTotalDrivers(),
operatorStats.getInputPositions(),
operatorStats.getSumSquaredInputPositions())),
(map1, map2) -> mergeMaps(map1, map2, OperatorInputStats::merge));
planNodeInputPositions.merge(planNodeId, operatorStats.getInputPositions(), Long::sum);
planNodeInputBytes.merge(planNodeId, operatorStats.getInputDataSize().toBytes(), Long::sum);
processedNodes.add(planNodeId);
}
// Gather output statistics
processedNodes.clear();
for (OperatorStats operatorStats : reverse(pipelineStats.getOperatorSummaries())) {
PlanNodeId planNodeId = operatorStats.getPlanNodeId();
// An "internal" pipeline like a hash build, links to another pipeline which is the actual output for this plan node
if (operatorStats.getPlanNodeId().equals(outputPlanNode) && !pipelineStats.isOutputPipeline()) {
continue;
}
if (processedNodes.contains(planNodeId)) {
continue;
}
planNodeOutputPositions.merge(planNodeId, operatorStats.getOutputPositions(), Long::sum);
planNodeOutputBytes.merge(planNodeId, operatorStats.getOutputDataSize().toBytes(), Long::sum);
processedNodes.add(planNodeId);
}
// Gather auxiliary statistics
for (OperatorStats operatorStats : pipelineStats.getOperatorSummaries()) {
PlanNodeId planNodeId = operatorStats.getPlanNodeId();
if (operatorStats.getInfo() instanceof HashCollisionsInfo) {
HashCollisionsInfo hashCollisionsInfo = (HashCollisionsInfo) operatorStats.getInfo();
operatorHashCollisionsStats.merge(planNodeId,
ImmutableMap.of(
operatorStats.getOperatorType(),
new OperatorHashCollisionsStats(
hashCollisionsInfo.getWeightedHashCollisions(),
hashCollisionsInfo.getWeightedSumSquaredHashCollisions(),
hashCollisionsInfo.getWeightedExpectedHashCollisions(),
operatorStats.getInputPositions())),
(map1, map2) -> mergeMaps(map1, map2, OperatorHashCollisionsStats::merge));
}
// The only statistics we have for Window Functions are very low level, thus displayed only in VERBOSE mode
if (operatorStats.getInfo() instanceof WindowInfo) {
WindowInfo windowInfo = (WindowInfo) operatorStats.getInfo();
windowNodeStats.merge(planNodeId, WindowOperatorStats.create(windowInfo), WindowOperatorStats::mergeWith);
}
}
}
List stats = new ArrayList<>();
for (PlanNodeId planNodeId : planNodeIds) {
if (!planNodeInputPositions.containsKey(planNodeId)) {
continue;
}
PlanNodeStats nodeStats;
// It's possible there will be no output stats because all the pipelines that we observed were non-output.
// For example in a query like SELECT * FROM a JOIN b ON c = d LIMIT 1
// It's possible to observe stats after the build starts, but before the probe does
// and therefore only have scheduled time, but no output stats
long outputPositions = planNodeOutputPositions.getOrDefault(planNodeId, 0L);
if (operatorHashCollisionsStats.containsKey(planNodeId)) {
nodeStats = new HashCollisionPlanNodeStats(
planNodeId,
new Duration(planNodeScheduledMillis.get(planNodeId), MILLISECONDS),
new Duration(planNodeCpuMillis.get(planNodeId), MILLISECONDS),
planNodeInputPositions.get(planNodeId),
succinctBytes(planNodeInputBytes.get(planNodeId)),
outputPositions,
succinctBytes(planNodeOutputBytes.getOrDefault(planNodeId, 0L)),
operatorInputStats.get(planNodeId),
operatorHashCollisionsStats.get(planNodeId));
}
else if (windowNodeStats.containsKey(planNodeId)) {
nodeStats = new WindowPlanNodeStats(
planNodeId,
new Duration(planNodeScheduledMillis.get(planNodeId), MILLISECONDS),
new Duration(planNodeCpuMillis.get(planNodeId), MILLISECONDS),
planNodeInputPositions.get(planNodeId),
succinctBytes(planNodeInputBytes.get(planNodeId)),
outputPositions,
succinctBytes(planNodeOutputBytes.getOrDefault(planNodeId, 0L)),
operatorInputStats.get(planNodeId),
windowNodeStats.get(planNodeId));
}
else {
nodeStats = new PlanNodeStats(
planNodeId,
new Duration(planNodeScheduledMillis.get(planNodeId), MILLISECONDS),
new Duration(planNodeCpuMillis.get(planNodeId), MILLISECONDS),
planNodeInputPositions.get(planNodeId),
succinctBytes(planNodeInputBytes.get(planNodeId)),
outputPositions,
succinctBytes(planNodeOutputBytes.getOrDefault(planNodeId, 0L)),
operatorInputStats.get(planNodeId));
}
stats.add(nodeStats);
}
return stats;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy