我最近开始学习DynamoDB,并创建了一个表格'评论'具有以下属性(以及DynamoDB类型):
productId - String
username - String
feedbackText - String
lastModifiedDate - Number (I'm storing the UNIX timestamp)
createdDate - Number
active - Number (0/1 value, 1 for all records by default)
以下是我希望在此表上运行的查询:
1. Get all reviews for a 'productId'
2. Get all reviews submitted by a 'username' (sorted asc/desc by lastModifiedDate)
3. Get N most recent reviews across products and users (using lastModifiedDate)
现在,为了能够运行这些查询,我在'评论'上创建了以下内容:表:
1. A Primary Key with 'productId' as the Hash Key and 'username' as the Range Key
2. A GSI with 'username' as the Hash Key and 'lastModifiedDate' as the Range Key
3. A GSI with 'active' as the Hash Key and 'lastModifiedDate' as the Range Key
最后一个指数有点像黑客,因为我介绍了“活跃的'我的表中的属性只是为了使值可以是' 1'对于所有记录,我可以将其用作GSI的哈希密钥。
我的问题很简单。我已经阅读了一些关于DynamoDB的内容,这是我能想到的最好的设计。我想问一下,我是否可以在这里使用更好的主键/索引设计。如果DynamoDB中有一个我可能错过的概念,那么在这个特定的用例中可能是有益的。谢谢!
答案 0 :(得分:0)
我认为你的设计是正确的: