Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Distinct attribute value from Global Secondary Index in DynamoDB

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

like image 200
RecklessSergio Avatar asked Sep 15 '16 13:09

RecklessSergio


1 Answers

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

like image 109
Eyal Ch Avatar answered Oct 21 '22 22:10

Eyal Ch