admin管理员组文章数量:1352147
So I have a dynamodb table with a primary key ID
and a secondary key Time
which is a number/timestamp. Now I want to query the latest record of a particular ID. I tried to construct the parameters like this but don't know how to move forward to query the item with the largest Time
.
function get_snapshot(id, callback){
let params = {
TableName: "Table1",
KeyConditionExpression: "ID = :id and Time ", // here I stuck
ExpressionAttributeValues: {
":id": id
}
};
docClient.query(params, function(err, data){
... // process the fetched item here
})
}
I'm quite new to this field. There could be a lot of rookie mistakes. Any help is appreciated.
So I have a dynamodb table with a primary key ID
and a secondary key Time
which is a number/timestamp. Now I want to query the latest record of a particular ID. I tried to construct the parameters like this but don't know how to move forward to query the item with the largest Time
.
function get_snapshot(id, callback){
let params = {
TableName: "Table1",
KeyConditionExpression: "ID = :id and Time ", // here I stuck
ExpressionAttributeValues: {
":id": id
}
};
docClient.query(params, function(err, data){
... // process the fetched item here
})
}
I'm quite new to this field. There could be a lot of rookie mistakes. Any help is appreciated.
Share Improve this question asked Nov 27, 2018 at 6:20 Kevin FangKevin Fang 2,0124 gold badges17 silver badges33 bronze badges2 Answers
Reset to default 10You don't actually need the Time
attribute for your query. If you want to get the 10 latest items, for example, your query params should look like this:
let params = {
TableName: "Table1",
KeyConditionExpression: "ID = :id",
ExpressionAttributeValues: {
":id": id
},
ScanIndexForward: false,
Limit: 10
};
ScanIndexForward: false
tells DynamoDB that it should return results starting with the highest sort key value. Limit: 1
tells DynamoDB that you only want to get the first 10 results.
Just to add, the ScanIndexForward is a boolean, and isn't supposed to be quoted.
So
let params = {
TableName: "Table1",
KeyConditionExpression: "ID = :id",
ExpressionAttributeValues: {
":id": id
},
ScanIndexForward: false,
Limit: 1
};
Thanks for this answer
本文标签: amazon web servicesjavascript query last items in dynamodb from aws lambdaStack Overflow
版权声明:本文标题:amazon web services - javascript query last items in dynamodb from aws lambda - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743910762a2560356.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论