You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Athena::Types::QueryExecutionStatistics

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

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.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#data_manifest_locationString

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.

Returns:

  • (String)

    The location and file name of a data manifest file.

#data_scanned_in_bytesInteger

The number of bytes in the data that was queried.

Returns:

  • (Integer)

    The number of bytes in the data that was queried.

#engine_execution_time_in_millisInteger

The number of milliseconds that the query took to execute.

Returns:

  • (Integer)

    The number of milliseconds that the query took to execute.

#query_planning_time_in_millisInteger

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.

Returns:

  • (Integer)

    The number of milliseconds that Athena took to plan the query processing flow.

#query_queue_time_in_millisInteger

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.

Returns:

  • (Integer)

    The number of milliseconds that the query was in your query queue waiting for resources.

#service_processing_time_in_millisInteger

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

Returns:

  • (Integer)

    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_millisInteger

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

Returns:

  • (Integer)

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