ScheduledQueryLastRunSummaryQueryInsightsResponse constructor
- Input<
int?> ? outputBytes, - Input<
int?> ? outputRows, - Input<
List< ? querySpatialCoverages,ScheduledQueryLastRunSummaryQueryInsightsResponseQuerySpatialCoverage> ?> - Input<
int?> ? queryTableCount, - Input<
List< ? queryTemporalRanges,ScheduledQueryLastRunSummaryQueryInsightsResponseQueryTemporalRange> ?>
Creates a new ScheduledQueryLastRunSummaryQueryInsightsResponse.
outputBytes Size of query result set in bytes. You can use this data to validate if the result set has changed as part of the query tuning exercise.
outputRows Total number of rows returned as part of the query result set. You can use this data to validate if the number of rows in the result set have changed as part of the query tuning exercise.
querySpatialCoverages Insights into the spatial coverage of the query, including the table with sub-optimal (max) spatial pruning. This information can help you identify areas for improvement in your partitioning strategy to enhance spatial pruning.
queryTableCount Number of tables in the query.
queryTemporalRanges Insights into the temporal range of the query, including the table with the largest (max) time range. Following are some of the potential options for optimizing time-based pruning: add missing time-predicates, remove functions around the time predicates, add time predicates to all the sub-queries.
Implementation
const ScheduledQueryLastRunSummaryQueryInsightsResponse({
this.outputBytes,
this.outputRows,
this.querySpatialCoverages,
this.queryTableCount,
this.queryTemporalRanges,
});