如何使用分区键从dynamodb中的复合主键获取记录
how to get the records using partition key from a composite primary key in dynamodb
我正在使用 java 在 DynamoDB 中插入和检索记录。
插入代码
Item item_to_insert = new Item().withPrimaryKey("LatLong", key,"location_code",key)
.withJSON("location_address", jsonW.toString())
.withString("version","1");
PutItemOutcome outcome = table.putItem(item_to_insert);
正在检索
GetItemSpec i_spec = new GetItemSpec()
.withPrimaryKey("LatLong", key,"location_code",key)
.withProjectionExpression("location_address")
.withConsistentRead(true);
现在我只想使用作为分区键的 LatLong 属性来检索记录。知道怎么做吗??
GetItem 获取特定项目,这需要您指定完整的主键。如果您想检索具有公共分区键的所有项目,我相信您正在寻找的方法是查询方法。
在此处查看更多信息:https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/QueryingJavaDocumentAPI.html
代码看起来像这样:
QuerySpec spec = new QuerySpec()
.withKeyConditionExpression("Id = :v_id")
.withValueMap(new ValueMap()
.withString(":v_id", "Amazon DynamoDB#DynamoDB Thread 1"));
我正在使用 java 在 DynamoDB 中插入和检索记录。
插入代码
Item item_to_insert = new Item().withPrimaryKey("LatLong", key,"location_code",key)
.withJSON("location_address", jsonW.toString())
.withString("version","1");
PutItemOutcome outcome = table.putItem(item_to_insert);
正在检索
GetItemSpec i_spec = new GetItemSpec()
.withPrimaryKey("LatLong", key,"location_code",key)
.withProjectionExpression("location_address")
.withConsistentRead(true);
现在我只想使用作为分区键的 LatLong 属性来检索记录。知道怎么做吗??
GetItem 获取特定项目,这需要您指定完整的主键。如果您想检索具有公共分区键的所有项目,我相信您正在寻找的方法是查询方法。
在此处查看更多信息:https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/QueryingJavaDocumentAPI.html
代码看起来像这样:
QuerySpec spec = new QuerySpec()
.withKeyConditionExpression("Id = :v_id")
.withValueMap(new ValueMap()
.withString(":v_id", "Amazon DynamoDB#DynamoDB Thread 1"));