#[non_exhaustive]pub struct QueryRuntimeStatisticsTimeline { /* private fields */ }
Expand description
Timeline statistics such as query queue time, planning time, execution time, service processing time, and total execution time.
Implementations§
source§impl QueryRuntimeStatisticsTimeline
impl QueryRuntimeStatisticsTimeline
sourcepub fn query_queue_time_in_millis(&self) -> Option<i64>
pub fn query_queue_time_in_millis(&self) -> Option<i64>
The number of milliseconds that the query was in your query queue waiting for resources. Note that if transient errors occur, Athena might automatically add the query back to the queue.
sourcepub fn query_planning_time_in_millis(&self) -> Option<i64>
pub fn query_planning_time_in_millis(&self) -> Option<i64>
The number of milliseconds that Athena took to plan the query processing flow. This includes the time spent retrieving table partitions from the data source. Note that because the query engine performs the query planning, query planning time is a subset of engine processing time.
sourcepub fn engine_execution_time_in_millis(&self) -> Option<i64>
pub fn engine_execution_time_in_millis(&self) -> Option<i64>
The number of milliseconds that the query took to execute.
sourcepub fn service_processing_time_in_millis(&self) -> Option<i64>
pub fn service_processing_time_in_millis(&self) -> Option<i64>
The number of milliseconds that Athena took to finalize and publish the query results after the query engine finished running the query.
sourcepub fn total_execution_time_in_millis(&self) -> Option<i64>
pub fn total_execution_time_in_millis(&self) -> Option<i64>
The number of milliseconds that Athena took to run the query.
source§impl QueryRuntimeStatisticsTimeline
impl QueryRuntimeStatisticsTimeline
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture QueryRuntimeStatisticsTimeline
.
Trait Implementations§
source§impl Clone for QueryRuntimeStatisticsTimeline
impl Clone for QueryRuntimeStatisticsTimeline
source§fn clone(&self) -> QueryRuntimeStatisticsTimeline
fn clone(&self) -> QueryRuntimeStatisticsTimeline
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<QueryRuntimeStatisticsTimeline> for QueryRuntimeStatisticsTimeline
impl PartialEq<QueryRuntimeStatisticsTimeline> for QueryRuntimeStatisticsTimeline
source§fn eq(&self, other: &QueryRuntimeStatisticsTimeline) -> bool
fn eq(&self, other: &QueryRuntimeStatisticsTimeline) -> bool
self
and other
values to be equal, and is used
by ==
.