RecklessSergio
RecklessSergio

Reputation: 836

Distinct attribute value from Global Secondary Index in DynamoDB

How do we achieve the similar functionality of distinct keyword from SQL in Amazon DynamoDB?

Upvotes: 9

Views: 24639

Answers (1)

Eyal Ch
Eyal Ch

Reputation: 10056

dyanamo db is not support this kind of functionality, but you can achieve this in some ways (client side, lambda on dynamodb stream the updates another table with distinct values..)

you can find a good answer here: Retrieve distinct values from the hash key - DynamoDB

Upvotes: 9

Related Questions