Search in sources :

Example 1 with TableFinishInfo

use of io.prestosql.operator.TableFinishInfo in project hetu-core by openlookeng.

the class QueryMonitor method getQueryIOMetadata.

private static QueryIOMetadata getQueryIOMetadata(QueryInfo queryInfo) {
    ImmutableList.Builder<QueryInputMetadata> inputs = ImmutableList.builder();
    for (Input input : queryInfo.getInputs()) {
        inputs.add(new QueryInputMetadata(input.getCatalogName().getCatalogName(), input.getSchema(), input.getTable(), input.getColumns().stream().map(Column::getName).collect(Collectors.toList()), input.getConnectorInfo()));
    }
    Optional<QueryOutputMetadata> output = Optional.empty();
    if (queryInfo.getOutput().isPresent()) {
        Optional<TableFinishInfo> tableFinishInfo = queryInfo.getQueryStats().getOperatorSummaries().stream().map(OperatorStats::getInfo).filter(TableFinishInfo.class::isInstance).map(TableFinishInfo.class::cast).findFirst();
        output = Optional.of(new QueryOutputMetadata(queryInfo.getOutput().get().getCatalogName().getCatalogName(), queryInfo.getOutput().get().getSchema(), queryInfo.getOutput().get().getTable(), tableFinishInfo.map(TableFinishInfo::getConnectorOutputMetadata), tableFinishInfo.map(TableFinishInfo::isJsonLengthLimitExceeded)));
    }
    return new QueryIOMetadata(inputs.build(), output);
}
Also used : Input(io.prestosql.execution.Input) TableFinishInfo(io.prestosql.operator.TableFinishInfo) ImmutableList(com.google.common.collect.ImmutableList) QueryOutputMetadata(io.prestosql.spi.eventlistener.QueryOutputMetadata) QueryIOMetadata(io.prestosql.spi.eventlistener.QueryIOMetadata) QueryInputMetadata(io.prestosql.spi.eventlistener.QueryInputMetadata)

Aggregations

ImmutableList (com.google.common.collect.ImmutableList)1 Input (io.prestosql.execution.Input)1 TableFinishInfo (io.prestosql.operator.TableFinishInfo)1 QueryIOMetadata (io.prestosql.spi.eventlistener.QueryIOMetadata)1 QueryInputMetadata (io.prestosql.spi.eventlistener.QueryInputMetadata)1 QueryOutputMetadata (io.prestosql.spi.eventlistener.QueryOutputMetadata)1