node.js - 从 AWS lambda 函数写入 dynamodb

标签 node.js amazon-web-services amazon-dynamodb aws-lambda aws-api-gateway

我在 AWS 工作,从 lambda 函数写入 dynamodb 数据库。我正在用 Node.JS 编写。我在写入之前和之后都有控制台日志写入,但写入似乎没有写入表。我认为这可能是身份验证错误或配置错误。下面是我的代码的开始。

'use strict';
console.log('Loading function');

var AWS = require('aws-sdk');
AWS.config.update({region: 'us-west-2'});
var dynamo = new AWS.DynamoDB();

// let doc = require('dynamodb-doc');
//let dynamo = new doc.DynamoDB();

var DevicetableName = "DeviceReadings";
var AlarmtableName = "AlarmReports";
var datetime = new Date().getTime().toString();

/**
 * v10
 * Provide an event that contains the following keys:
 *
 *   - eventType: type of event temp log or alarm
 *   - deviceID: ID of device reporting temp or alarm
 *   - deviceType:  Type of device furnace or annealer
 *   - temp: temperature the device is reporting in fahrenheit degrees
 *   - alarmLevel: level of alarm severe, warning, informational....
 *   - alarmText: text of alarm for persisting and publishing
 *   - datetime: time of alarm or temp report
 */
exports.handler = (event, context, callback) => {
    console.log('Received event:', JSON.stringify(event, null, 2));

    const eventType = event.eventType;



    switch (eventType) {
        /* Update DB with current Temperature and alarm if needed */
        case 'LogAnnealTemp':{
            /* parse temp out of payload */
            console.log('LogAnnealTemp Reached');
            dynamo.putItem(
                {
                    "TableName": DevicetableName,
                     "Item": 
                    {
                    "deviceIDSensorID": {"S": "Dev1Sense1" },
                    "deviceType": {"S": "Anneal" },
                    "temp": {"N": "1969"  },
                    "timeTaken": {"S": "today" },
                    "timeWritten": {"S": "alsotoday" }
                    }
                });
            console.log('LogAnnealTemp After Write Reached');
            break;
        }
        case 'LogFurnaceTemp':{
            /* parse temp out of payload */
            console.log('LogAnnealTemp Reached');

            /* If temp is over 2300 write to alarm topic */
            if (event.temp >= 2300)
            {
                console.log('LogFurnaceTemp over 2300 Reached');  
            }
            /* Else if temp is under 1900 write to alarm topic */
            else if (event.temp <= 1900)
            {
                console.log('LogFurnaceTemp under 1900 Reached');      
            }
            break;
        }
        case 'LogAlarm':{
            /* parse alarm level out of payload */
            /* If alarm is severe log and notify */
            if (event.alarmlevel = "severe") 
            {
                console.log('LogAlarm Severe'); 
            }
            /* Else if alarm is serious log and notify */
            else if (event.alarmlevel = "serious") 
            {
                console.log('LogAlarm Serious'); 
            }
            /* Else if alarm is warning log */
            else if (event.alarmlevel = "warning") 
            {
                console.log('LogAlarm Warning');  
            }
            else if (event.alarmlevel = "informational") 
            {
                console.log('LogAlarm Informational');
            }
            else {
                console.log('LogAlarm Unknown');
            }
            break;
        }
        case 'ping':{
            callback(null, 'pong');
            break;
        }
        default:
            callback(new Error(`Unrecognized operation "${operation}"`));
    }


};

当我将其作为 lambda 的简单 exec 版本运行时,它会运行,写入控制台,但写入不会发生。当我将其作为微服务运行时,它会在 require 语句中爆炸。任何和所有的帮助表示赞赏。

最佳答案

您没有正确处理异步调用。提示:第二个 console.log 在数据库调用仍在运行时发生。您需要将回调函数传递给数据库调用。在该回调函数中,您需要检查错误,然后执行调用完成后需要发生的任何操作,例如记录已完成的消息。

关于node.js - 从 AWS lambda 函数写入 dynamodb,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38337422/

相关文章:

javascript - Node : how to put objects as keys of hash object?

javascript - 添加 JavaScript 的服务器端库

amazon-web-services - 如何获取AWS Cloudformation模板文件中的用户名?

amazon-web-services - 尝试在 CloudFormation 上创建堆栈时,状态仅从 CREATE_IN_PROGRESS 更改为 ROLLBACK_COMPLETE

node.js - 无服务器 - DynamoDB 与 RethinkDB + AWS Lambda 相比(糟糕)性能

javascript - 脚本src通过nodejs+express变成jade中的url

javascript - 单流: sign user in via Google oAuth AND grant offline/server access?

amazon-web-services - 如何将现有资源导入到 terraform 的单独子目录中?

python - 在 AWS 的 DynamoDB 表中设置列的顺序

python - 如何使用 Python boto3 从 AWS DynamoDB 表中获取特定属性的所有项目?