QueryMode
Specifies the mode used by the provider to retrieve results from Amazon DynamoDB.
Possible Values
Adaptive, PartiQL, SCANData Type
string
Default Value
"Adaptive"
Remarks
This property determines the query execution strategy for retrieving results from DynamoDB:
- Adaptive: Automatically selects the best query mode based on the SQL statement filters and ThreadCount.
- PartiQL: Translates supported SQL statements into their PartiQL equivalents for execution.
- SCAN: Performs a full table scan, using parallel threads as specified by ThreadCount.
Use Adaptive for optimal performance, as it dynamically selects the most efficient query mode. Choose PartiQL for precise query translation or SCAN when a complete table scan is required.