[][src]Struct rusoto_athena::QueryExecutionStatistics

pub struct QueryExecutionStatistics {
    pub data_manifest_location: Option<String>,
    pub data_scanned_in_bytes: Option<i64>,
    pub engine_execution_time_in_millis: Option<i64>,
    pub query_planning_time_in_millis: Option<i64>,
    pub query_queue_time_in_millis: Option<i64>,
    pub service_processing_time_in_millis: Option<i64>,
    pub total_execution_time_in_millis: Option<i64>,
}

The amount of data scanned during the query execution and the amount of time that it took to execute, and the type of statement that was run.

Fields

data_manifest_location: Option<String>

The location and file name of a data manifest file. The manifest file is saved to the Athena query results location in Amazon S3. The manifest file tracks files that the query wrote to Amazon S3. If the query fails, the manifest file also tracks files that the query intended to write. The manifest is useful for identifying orphaned files resulting from a failed query. For more information, see Working with Query Results, Output Files, and Query History in the Amazon Athena User Guide.

data_scanned_in_bytes: Option<i64>

The number of bytes in the data that was queried.

engine_execution_time_in_millis: Option<i64>

The number of milliseconds that the query took to execute.

query_planning_time_in_millis: 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.

query_queue_time_in_millis: 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.

service_processing_time_in_millis: Option<i64>

The number of milliseconds that Athena took to finalize and publish the query results after the query engine finished running the query.

total_execution_time_in_millis: Option<i64>

The number of milliseconds that Athena took to run the query.

Trait Implementations

impl Clone for QueryExecutionStatistics[src]

impl Debug for QueryExecutionStatistics[src]

impl Default for QueryExecutionStatistics[src]

impl<'de> Deserialize<'de> for QueryExecutionStatistics[src]

impl PartialEq<QueryExecutionStatistics> for QueryExecutionStatistics[src]

impl StructuralPartialEq for QueryExecutionStatistics[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.