Dynamodb获得约10,000 t0 30,000条记录

时间:2018-12-08 05:25:53

标签: node.js amazon-dynamodb

getDBResults(id,
startDate_Timestamp,
endDate_Timestamp).then(data, 
err)=>  {
if (err) console.log("EE", err);
console.log("DD",data);
if (data.length != 0) {
 res.json({ "Status": 200, "Data": data });
 }
 })

 function getDBResults(id, startDate_Timestamp, 
 endDate_Timestamp) {
 var q = Q.defer();
 const params = {
 TableName: 'TableName',
 KeyConditionExpression: '#Id=:Id AND #Timestamp BETWEEN  
:start_date AND :end_date',
ExpressionAttributeNames: {
  "#Timestamp": "Timestamp",
  "#Id": "Id"
},
ExpressionAttributeValues: {
  ":Id": id,
  ":start_date": startDate_Timestamp,
  ":end_date": endDate_Timestamp
}
};
var results = [];
var callback = function (err, data) {
console.log("DD", data);
if (err) {
  console.log('Dynamo fail ' + err);
  q.reject(err);
} else if (data.LastEvaluatedKey) {
  params.ExclusiveStartKey = data.LastEvaluatedKey;
  docclient.query(params, callback);
} else {
  console.log("RR",results);
  q.resolve(results);
}
data.Items.forEach(function (item) {
  results.push(item);
});
}
docclient.query(params, callback);
return q.promise;
}

使用此代码,我没有得到任何结果和结果   id包含将近20,000至30,000条记录。我想全部拿走   该记录,但它不会在aws控制台上记录任何内容。请   帮我弄清楚

1 个答案:

答案 0 :(得分:0)

不确定这是否是解决方案,但是我会在调用新查询之前尝试插入results

} else if (data.LastEvaluatedKey) {
    // save items
    data.Items.forEach(function (item) { results.push(item); });        
    params.ExclusiveStartKey = data.LastEvaluatedKey;
    docclient.query(params, callback);
}

建议:考虑使用承诺,它们更容易使用。您的代码是“回调地狱”:)