Class: Aws::Athena::Types::QueryRuntimeStatistics
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::QueryRuntimeStatistics
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-athena/types.rb
Overview
The query execution timeline, statistics on input and output rows and bytes, and the different query stages that form the query execution plan.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#output_stage ⇒ Types::QueryStage
Stage statistics such as input and output rows and bytes, execution time, and stage state.
-
#rows ⇒ Types::QueryRuntimeStatisticsRows
Statistics such as input rows and bytes read by the query, rows and bytes output by the query, and the number of rows written by the query.
-
#timeline ⇒ Types::QueryRuntimeStatisticsTimeline
Timeline statistics such as query queue time, planning time, execution time, service processing time, and total execution time.
Instance Attribute Details
#output_stage ⇒ Types::QueryStage
Stage statistics such as input and output rows and bytes, execution time, and stage state. This information also includes substages and the query stage plan.
3314 3315 3316 3317 3318 3319 3320 |
# File 'lib/aws-sdk-athena/types.rb', line 3314 class QueryRuntimeStatistics < Struct.new( :timeline, :rows, :output_stage) SENSITIVE = [] include Aws::Structure end |
#rows ⇒ Types::QueryRuntimeStatisticsRows
Statistics such as input rows and bytes read by the query, rows and bytes output by the query, and the number of rows written by the query.
3314 3315 3316 3317 3318 3319 3320 |
# File 'lib/aws-sdk-athena/types.rb', line 3314 class QueryRuntimeStatistics < Struct.new( :timeline, :rows, :output_stage) SENSITIVE = [] include Aws::Structure end |
#timeline ⇒ Types::QueryRuntimeStatisticsTimeline
Timeline statistics such as query queue time, planning time, execution time, service processing time, and total execution time.
3314 3315 3316 3317 3318 3319 3320 |
# File 'lib/aws-sdk-athena/types.rb', line 3314 class QueryRuntimeStatistics < Struct.new( :timeline, :rows, :output_stage) SENSITIVE = [] include Aws::Structure end |