AWS Lamda has, in many ways, replaced conventional servers. The databases they work with, though, haven't changed all that much. This talk covers best practices, tips, and tricks for getting your Lambdas to play nicely with your databse.
- Serverless Framework
- AWS Secrets Manager
- Connecting to the Database
- Preventing Choking the DB
- AWS Database Proxy
- Monitoring (CloudWatch + Epsagon)
To deploy your code to your AWS account
$ npm install -g serverless
$ sls deploy --region us-east-1
To run the web demo:
$ cd web/
$ python -m SimpleHTTPServer
$ open http://localhost:8000/index.html