https://github.com/saidsef/aws-dynamodb-local
AWS DynamoDB Local
https://github.com/saidsef/aws-dynamodb-local
aws aws-dynamodb docker-image dynamodb
Last synced: 3 months ago
JSON representation
AWS DynamoDB Local
- Host: GitHub
- URL: https://github.com/saidsef/aws-dynamodb-local
- Owner: saidsef
- License: mit
- Created: 2017-07-16T23:55:00.000Z (almost 8 years ago)
- Default Branch: main
- Last Pushed: 2024-12-30T20:35:46.000Z (6 months ago)
- Last Synced: 2025-03-25T23:07:39.243Z (3 months ago)
- Topics: aws, aws-dynamodb, docker-image, dynamodb
- Language: Dockerfile
- Homepage:
- Size: 79.1 KB
- Stars: 5
- Watchers: 2
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Docker DynamoDB Local [](#kubernetes-deployment) [](#kubernetes-deployment) [](#kubernetes-deployment)
Build for [local AWS DynamoDB](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DynamoDBLocal.UsageNotes.html)
## AWS DynameDB
Amazon DynamoDB is a fast and flexible NoSQL database service for all applications that need consistent, single-digit millisecond latency at any scale. It is a fully managed cloud database and supports both document and key-value store models. Its flexible data model, reliable performance, and automatic scaling of throughput capacity, makes it a great fit for mobile, web, gaming, ad tech, IoT, and many other applications.
## Components
- OpenJDK v8+
- [AWS DynamoDB Local](https://s3-us-west-2.amazonaws.com/dynamodb-local/dynamodb_local_latest.tar.gz)## Kubernetes Deployment
```bash
kubectl apply -k deployment/```
Or, to deploy via argocd:
```bash
kubectl apply -f argocd/application.yml
``````shell
aws --endpoint-url=http://dynamodb.[namespace].svc dynamodb list-tables --region local
```## Docker Deployment
```shell
docker run -d -p 8000:8000 docker.io/saidsef/aws-dynamodb-local:latest
```## HowTo and Documentation
```shell
aws dynamodb create-table \
--table-name TableName \
--attribute-definitions \
AttributeName=id,AttributeType=S --key-schema \
AttributeName=id,KeyType=HASH \
--provisioned-throughput ReadCapacityUnits=2,WriteCapacityUnits=2 \
--endpoint-url http://dynamodb.[namespace].svc
```In the SDK set the client to:
```shell
region: 'localhost',
endpoint: 'http://localhost:8000'
```