AWS Lambda lets you run code without provisioning or managing servers
- http://blog.d2-si.fr/2017/05/31/monitoring-aws-lambda/
- https://read.acloud.guru/serverless/home
- https://medium.com/search?q=serverless%20aws
- Choosing a Microservices Deployment Strategy
The following tutorial can be done manually or run within serverless.com framework.
To install and use the serverless framework:
npm install -g serverless
npm install
serverless deploy
- From the AWS console, go to Compute -> Lambda
- Click Get Started Now if this is the first time you create a Lambda function or Create a Lambda function
- Select microservice-http-endpoint blueprint
- Enter:
- Security: Open (I know! It's bad)
- Click Next
- Enter:
- In Section Configure function:
- Name: LambdaNodeJsToDynamoDB
- In Section Lambda function handler and role:
- Role Name: AccessToDynamoDB
- Click Next
- Click Create function
When the Lambda function has been created
- Goto Trigger tab and click to the API Gateway URL.
The following message is displayed:
{"message": "Internal server error"}
This is because the Lambda function is expecting a query parameter named TableName followed by the DynamoDB table to read
- Add the query parameter ?TableName=CloudCorner at the end of the API Gateway URL
The following message is displayed:
Requested resource not found
This is because the DynamoDB table CloudCorner doesn't exist
- From the AWS console, go to Database -> DynamoDB
- Select Create Table
- Table name: CloudCorner
- Primary key: UserID Number
- Click Create
Wait until the CloudCorner table has been created
- Select the CloudCorner table
- Go to folder Items and select Create Item
- Enter:
- UserID: 1
- Click on + -> Append -> String. Enter:
- LastName: Enter your last name
- Click Save
- Retry the API Gateway URL
The following message is displayed:
{"Items":[{"UserID":"1","LastName":"ARQUES"}],"Count":1,"ScannedCount":1}
Congratulations : We have created your first API Gateway end point and your first lambda function that interacts with DynamoDB
- Install postman add-on
- Copy/Paste the API Gateway URL of your Lambda function into postman without query parameter
- Select the POST HTTP method
- Copy/Paste into the body of the POST request:
{
"Item": {
"UserID": 10,
"LastName": "CLOUD GUY"
},
"TableName": "CloudCorner"
}
- Send the Request
- From the AWS console, go to Database -> DynamoDB
- Select CloudCorner table and check that your item has been added
- You can also perform the GET request into postman or your web browser by adding query parameter TableName with value CloudCorner
- Delete the CloudCorner DynamoDB table
- Delete the LambdaMicroservice API Gateway
- Delete the LambdaNodeJsToDynamoDB Lambda function
- Delete the AccessToDynamoDB IAM Role
- Delete the /aws/lambda/LambdaNodeJsToDynamoDB CloudWatch log group