gpt4 book ai didi

amazon-web-services - 不使用分区键查询 DynamoDB 表的全局二级索引

转载 作者:行者123 更新时间:2023-12-04 08:23:44 33 4
gpt4 key购买 nike

我有一个 DynamoDB 表,分区键为 userID,没有排序键。该表在每个项目中还有一个 timestamp 属性。我想检索在指定范围内具有时间戳的所有项目(无论 userID 即跨越所有分区)。阅读文档并搜索 Stack Overflow ( here ) 后,我发现我需要为我的表创建一个 GSI。因此,我使用以下键创建了一个 GSI:

  • 分区键:userID
  • 排序键:时间戳

我正在使用以下代码通过 Java SDK 查询索引:

String lastWeekDateString = getLastWeekDateString();
AmazonDynamoDB client = AmazonDynamoDBClientBuilder.standard().build();
DynamoDB dynamoDB = new DynamoDB(client);

Table table = dynamoDB.getTable("user table");
Index index = table.getIndex("userID-timestamp-index");

QuerySpec querySpec = new QuerySpec()
.withKeyConditionExpression("timestamp > :v_timestampLowerBound")
.withValueMap(new ValueMap()
.withString(":v_timestampLowerBound", lastWeekDateString));

ItemCollection<QueryOutcome> items = index.query(querySpec);
Iterator<Item> iter = items.iterator();

while (iter.hasNext()) {
Item item = iter.next();
// extract item attributes here
}

执行此代码时出现以下错误:

Query condition missed key schema element: userID

据我所知,我应该能够仅使用排序键查询 GSI,而无需对分区键给出任何条件。请帮助我了解我的实现有什么问题。谢谢。

编辑:阅读线程后here ,事实证明我们无法查询仅具有排序键范围的 GSI。 那么,如果有的话,有什么替代方法可以通过对属性的范围查询来查询整个表? 我在该线程中找到的一个建议是使用年份作为分区键。如果所需范围跨越多年,这将需要多次查询。此外,这不会在所有分区之间均匀分布数据,因为只有与当年对应的分区将用于一整年的插入。请提出任何替代方案。

最佳答案

使用dynamodb Query操作时,至少要指定Partition key。这就是为什么您会收到需要 userId 的错误。 (在 AWS Query docs 中)

The condition must perform an equality test on a single partition key value.

在没有分区键的情况下获取项目的唯一方法是执行扫描操作(但这不会按您的排序键排序!)

如果您想对所有项目进行排序,则必须创建一个 GSI,其分区键对于您需要的所有项目都是相同的(例如,为所有项目创建一个新属性,例如“类型”: “元素”)。然后您可以查询 GSI 并指定#type=:item

QuerySpec querySpec = new QuerySpec()
.withKeyConditionExpression(":type = #item AND timestamp > :v_timestampLowerBound")
.withKeyMap(new KeyMap()
.withString("#type", "type"))
.withValueMap(new ValueMap()
.withString(":v_timestampLowerBound", lastWeekDateString)
.withString(":item", "item"));

关于amazon-web-services - 不使用分区键查询 DynamoDB 表的全局二级索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65374252/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com