DynamoDB
Amazon DynamoDB is a fully managed NoSQL database service offering single-digit millisecond performance at any scale.
6 articlesUse Lambda with Node.js to Insert Data Into DynamoDB
2021/06/01·2 min readThis blog shows how to create an AWS Lambda with Node.js and insert a record into DynamoDB. It also shows how to manually deploy Lambda as a package to AWS from your local development environment.
How to Backup DynamoDB Data to Different AWS Account
2021/02/13·3 min readThis blog shows how to migrate DynamoDB data between different AWS accounts. You can migrate DynamoDB by using different approaches such as AWS S3 with AWS Glue, Data Pipeline, or Amazon EMR. Here, we'll use S3 and focus on how to move DynamoDB backup data into a different AWS account.
Backup AWS DynamoDB Table to Local
2020/12/31·2 min readA step-by-step guide on how to backup your AWS DynamoDB table from the cloud to your local DynamoDB environment using S3 export and Node.js.
Move DynamoDB Table from Local to AWS Cloud
2020/12/31·1 min readThis blog shows how to move a DynamoDB local table and data to the DynamoDB Web Service. Unlike SQL databases, you can't simply use a backup file to restore to a different environment.
Create DynamoDB Table Locally
2020/12/30·3 min readA step-by-step guide on how to create a DynamoDB table in your local environment using Node.js, including adding data and testing with scan.
How to Setting up DynamoDB Locally
2020/12/12·5 min readThis blog shows how to set up DynamoDB locally, and also demonstrates a few simple commands to access local DynamoDB.