Dynamodb表'UserProfile'有一个名为“UserId”的散列键,没有范围键。它没有索引。我想使用scan获取存储在表中的所有数据。这样做了:
aws dynamodb scan --region "ap-southeast-1" --attributes-to-get "UserId" "details" --table-name UserProfile | less
这会为同一个用户ID返回许多行。这不是预期的。关于什么可能出错的想法?我查看了许多与dynamodb扫描相关的文档,但没有找到任何内容。可能是扫描给了我这些数据的所有版本?如果是,我如何才能获得最新的快照?
提前致谢..