Interface QueryRuntimeStatisticsTimeline.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<QueryRuntimeStatisticsTimeline.Builder,
,QueryRuntimeStatisticsTimeline> SdkBuilder<QueryRuntimeStatisticsTimeline.Builder,
,QueryRuntimeStatisticsTimeline> SdkPojo
- Enclosing class:
QueryRuntimeStatisticsTimeline
public static interface QueryRuntimeStatisticsTimeline.Builder
extends SdkPojo, CopyableBuilder<QueryRuntimeStatisticsTimeline.Builder,QueryRuntimeStatisticsTimeline>
-
Method Summary
Modifier and TypeMethodDescriptionengineExecutionTimeInMillis
(Long engineExecutionTimeInMillis) The number of milliseconds that the query took to execute.queryPlanningTimeInMillis
(Long queryPlanningTimeInMillis) The number of milliseconds that Athena took to plan the query processing flow.queryQueueTimeInMillis
(Long queryQueueTimeInMillis) The number of milliseconds that the query was in your query queue waiting for resources.serviceProcessingTimeInMillis
(Long serviceProcessingTimeInMillis) The number of milliseconds that Athena took to finalize and publish the query results after the query engine finished running the query.totalExecutionTimeInMillis
(Long totalExecutionTimeInMillis) The number of milliseconds that Athena took to run the query.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Method Details
-
queryQueueTimeInMillis
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.
- Parameters:
queryQueueTimeInMillis
- 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:
- Returns a reference to this object so that method calls can be chained together.
-
queryPlanningTimeInMillis
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.
- Parameters:
queryPlanningTimeInMillis
- 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:
- Returns a reference to this object so that method calls can be chained together.
-
engineExecutionTimeInMillis
QueryRuntimeStatisticsTimeline.Builder engineExecutionTimeInMillis(Long engineExecutionTimeInMillis) The number of milliseconds that the query took to execute.
- Parameters:
engineExecutionTimeInMillis
- The number of milliseconds that the query took to execute.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
serviceProcessingTimeInMillis
QueryRuntimeStatisticsTimeline.Builder serviceProcessingTimeInMillis(Long serviceProcessingTimeInMillis) The number of milliseconds that Athena took to finalize and publish the query results after the query engine finished running the query.
- Parameters:
serviceProcessingTimeInMillis
- The number of milliseconds that Athena took to finalize and publish the query results after the query engine finished running the query.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
totalExecutionTimeInMillis
The number of milliseconds that Athena took to run the query.
- Parameters:
totalExecutionTimeInMillis
- The number of milliseconds that Athena took to run the query.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-