Introducing G2.ai, the future of software buying.Try now
Pankaj T.
PT
Student at CHANDIGARH UNIVERSITY

how do i create a amazon dynamodb table locally?

1. Local storage vs. Cloud storage: which one to choose? 2. Advantages of local storage? 3. How to set up DynamoDB locally?
2 comments
Looks like you’re not logged in.
Users need to be logged in to answer questions
Log In
SQ
Software Engineer
0
To create an Amazon DynamoDB table locally: Use Docker: Run docker run -p 8000:8000 amazon/DynamoDB-local. Verify: Access http://localhost:8000 in your browser. Create the table: Use the AWS CLI or an AWS SDK pointing to that URL.
Looks like you’re not logged in.
Users need to be logged in to write comments
Log In
Reply
HS
Technical Architect
0
There is no way that you can setup a DynamoDB locally. In fact, there is no AWS service that you can setup locally. However, there are some other tools that can help you a little bit to achieve this. One such tool is localstack - https://localstack.cloud/
Looks like you’re not logged in.
Users need to be logged in to write comments
Log In
Reply