Reputation: 597
Consider the following aspects:
Does the parallelScan search from the AWS DynamoDB SDK always return the result on the same order?
Upvotes: 1
Views: 273
Reputation: 7132
The scan order will be the same between calls. All items in the table have an order to them. This is needed for parallel scans and LastEvaluatedKey behaviors to work correctly. You can't anticipate the order but it's necessarily stable between invocations.
Upvotes: 2