AWS DynamoDB Scan and FilterExpression using array of hash values(使用哈希值数组的 AWS DynamoDB 扫描和 FilterExpression)
问题描述
我很难找到在 DynamoDB 表上使用 FilterExpression 进行扫描的有用示例.我在浏览器中使用 javascript SDK.
I am having a hard time finding a useful example for a scan with FilterExpression on a DynamoDB table. I am using the javascript SDK in the browser.
我想扫描我的表并仅返回那些在我传递给 Scan 的数组中具有 HASH 字段UID"值的记录
I would like to scan my table and return only those records that have HASH field "UID" values within an array I pass to the Scan
假设我有一个唯一 id 数组,它们是我的表的哈希字段我想从我的 DynamoDB 表中查询这些记录.
Lets say I have an array of unique ids that are the hash field of my table I would like to query these records from my DynamoDB table.
如下图
var idsToSearch=['123','456','789'] //array of the HASH values I would like to retrieve
var tableToSearch = new AWS.DynamoDB();
var scanParams = {
"TableName":"myAwsTable",
"AttributesToGet":['ID','COMMENTS','DATE'],
"FilterExpression":"'ID' in "+idsToSearch+""
}
tableToSearch.scan(scanParams), function(err,data){
if (err) console.log(err, err.stack); //error handler
else console.log(data); //success response
})
推荐答案
你应该使用 IN 操作符.将 Placeholders 用于属性名称和属性值也更容易.不过,我建议不要在这种情况下使用 Scan.听起来您已经有了要查找的哈希键属性值,因此使用 BatchGetItem.
You should make use of the IN operator. It is also easier to use Placeholders for attribute names and attribute values. I would, however, advise against using a Scan in this case. It sounds like you already have the hash key attribute values that you want to find, so it would make more sense to use BatchGetItem.
无论如何,这就是你在 Java 中的做法:
Anyways, here is how you would do it in Java:
ScanSpec scanSpec = new ScanSpec()
.withFilterExpression("#idname in (:val1, :val2, :val3)")
.withNameMap(ImmutableMap.of("#idname", "ID"))
.withValueMap(ImmutableMap.of(":val1", "123", ":val2", "456", ":val23", "789"));
ItemCollection<ScanOutcome> = table.scan(scanSpec);
我会想象使用 Javascript SDK 会是这样的:
I would imagine using the Javascript SDK it would be something like this:
var scanParams = {
"TableName":"myAwsTable",
"AttributesToGet": ['ID','COMMENTS','DATE'],
"FilterExpression": '#idname in (:val1, :val2, :val3)',
"ExpressionAttributeNames": {
'#idname': 'ID'
},
"ExpressionAttributeValues": {
':val1': '123',
':val2': '456',
':val3': '789'
}
}
这篇关于使用哈希值数组的 AWS DynamoDB 扫描和 FilterExpression的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用哈希值数组的 AWS DynamoDB 扫描和 FilterExpression
基础教程推荐
- Bootstrap 模态出现在背景下 2022-01-01
- 如何添加到目前为止的天数? 2022-01-01
- npm start 错误与 create-react-app 2022-01-01
- 检查 HTML5 拖放文件类型 2022-01-01
- fetch 是否支持原生多文件上传? 2022-01-01
- 在 contenteditable 中精确拖放 2022-01-01
- Bokeh Div文本对齐 2022-01-01
- 原生拖动事件后如何获取 mouseup 事件? 2022-01-01
- 即使用户允许,Gmail 也会隐藏外部电子邮件图片 2022-01-01
- Fabric JS绘制具有活动形状的多边形 2022-01-01
