public static interface QueryExecutionStatistics.Builder extends SdkPojo, CopyableBuilder<QueryExecutionStatistics.Builder,QueryExecutionStatistics>
| Modifier and Type | Method and Description |
|---|---|
QueryExecutionStatistics.Builder |
dataManifestLocation(String dataManifestLocation)
The location and file name of a data manifest file.
|
QueryExecutionStatistics.Builder |
dataScannedInBytes(Long dataScannedInBytes)
The number of bytes in the data that was queried.
|
QueryExecutionStatistics.Builder |
engineExecutionTimeInMillis(Long engineExecutionTimeInMillis)
The number of milliseconds that the query took to execute.
|
QueryExecutionStatistics.Builder |
queryPlanningTimeInMillis(Long queryPlanningTimeInMillis)
The number of milliseconds that Athena took to plan the query processing flow.
|
QueryExecutionStatistics.Builder |
queryQueueTimeInMillis(Long queryQueueTimeInMillis)
The number of milliseconds that the query was in your query queue waiting for resources.
|
default QueryExecutionStatistics.Builder |
resultReuseInformation(Consumer<ResultReuseInformation.Builder> resultReuseInformation)
Contains information about whether previous query results were reused for the query.
|
QueryExecutionStatistics.Builder |
resultReuseInformation(ResultReuseInformation resultReuseInformation)
Contains information about whether previous query results were reused for the query.
|
QueryExecutionStatistics.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.
|
QueryExecutionStatistics.Builder |
totalExecutionTimeInMillis(Long totalExecutionTimeInMillis)
The number of milliseconds that Athena took to run the query.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildQueryExecutionStatistics.Builder engineExecutionTimeInMillis(Long engineExecutionTimeInMillis)
The number of milliseconds that the query took to execute.
engineExecutionTimeInMillis - The number of milliseconds that the query took to execute.QueryExecutionStatistics.Builder dataScannedInBytes(Long dataScannedInBytes)
The number of bytes in the data that was queried.
dataScannedInBytes - The number of bytes in the data that was queried.QueryExecutionStatistics.Builder dataManifestLocation(String dataManifestLocation)
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.
dataManifestLocation - 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.QueryExecutionStatistics.Builder totalExecutionTimeInMillis(Long totalExecutionTimeInMillis)
The number of milliseconds that Athena took to run the query.
totalExecutionTimeInMillis - The number of milliseconds that Athena took to run the query.QueryExecutionStatistics.Builder queryQueueTimeInMillis(Long 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.
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.QueryExecutionStatistics.Builder queryPlanningTimeInMillis(Long 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.
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.QueryExecutionStatistics.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.
serviceProcessingTimeInMillis - The number of milliseconds that Athena took to finalize and publish the query results after the query
engine finished running the query.QueryExecutionStatistics.Builder resultReuseInformation(ResultReuseInformation resultReuseInformation)
Contains information about whether previous query results were reused for the query.
resultReuseInformation - Contains information about whether previous query results were reused for the query.default QueryExecutionStatistics.Builder resultReuseInformation(Consumer<ResultReuseInformation.Builder> resultReuseInformation)
Contains information about whether previous query results were reused for the query.
This is a convenience method that creates an instance of theResultReuseInformation.Builder avoiding
the need to create one manually via ResultReuseInformation.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and
its result is passed to resultReuseInformation(ResultReuseInformation).
resultReuseInformation - a consumer that will call methods on ResultReuseInformation.BuilderresultReuseInformation(ResultReuseInformation)Copyright © 2023. All rights reserved.