OneNoOne
OneNoOne

Reputation: 597

ParallelScan result order from AWS DynamoDB

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

Answers (1)

hunterhacker
hunterhacker

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

Related Questions