This is a simple serverless application built in Typescript and uses Node.js 14 runtime. It consists of an Amazon API Gateway backed by four AWS Lambda functions and an Amazon DynamoDB table for storage.
- AWS CLI
- AWS CDK
- Node.js 14
- Artillery for load-testing the application
Within folder is the products npm project. This project contains all the code for all four Lambda functions. It uses the hexagonal architecture pattern to decouple the entry points, from the main domain logic and the storage logic.
Deploy the demo to your AWS account using AWS CDK.
npm install
cdk deploy
The command cdk deploy
will first build the products TypeScript project using a docker build image esbuild.
Then it will use AWS CloudFormation to deploy the resources to your account.
CDK will create an output of the API Gateway endpoint URL for future use in our load tests.
Artillery is used to make 300 requests / second for 10 minutes to our API endpoints. You can run this with the following command.
./load-test/run-load-test.sh
This is a demanding load test, to change the rate alter the arrivalRate
value in load-test.yml
.
This app leverages the AWS Lambda Powertools for TypeScript to emit monitoring data.
Using this CloudWatch Logs Insights query you can analyse the latency of the requests made to the Lambda functions.
This query returns the last 20 logs of the Lambda function that returns the products list.
fields resource_path, message, timestamp
| filter service = 'serverless-typescript-demo'
| filter function_name LIKE /GetProducts/
| sort @timestamp desc
| limit 20
This query returns the last 20 logs that contain an error or a warning.
fields resource_path, message, timestamp
| filter service = 'serverless-typescript-demo'
| filter level = 'WARN' or level = 'ERROR'
| sort @timestamp desc
| limit 20
This query returns the last 20 logs related to a specific product ID.
"63f74370-1d0b-49f8-be86-586efdef13be"
| fields resource_path, message, timestamp
| filter service = 'serverless-typescript-demo'
| sort @timestamp desc
| limit 20
This query returns the last 20 logs of invocations that experienced a cold start.
fields resource_path, message, timestamp
| filter service = 'serverless-typescript-demo'
| filter cold_start = 1
| sort @timestamp desc
| limit 20
This query separates cold starts from other requests and then gives you p50, p90 and p99 percentiles.
filter @type="REPORT"
| fields greatest(@initDuration, 0) + @duration as duration, ispresent(@initDuration) as coldStart
| stats count(*) as count, pct(duration, 50) as p50, pct(duration, 90) as p90, pct(duration, 99) as p99, max(duration) as max by coldStart
You can find implementations of this project in other languages here:
See CONTRIBUTING for more information.
This library is licensed under the MIT-0 License. See the LICENSE file.