AWS DynamoDB for Local Systems: This Database is more like the documentDB or MongoDB that is fully managed by AWS, it's not ideal for tables with many relationships, highly nested data structures with restrictive complex filtering, sorting and aggregation.
- AWS DynamoDB local installation
https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DynamoDBLocal.DownloadingAndRunning.htmlbut make sure u have JAVA installed on your system. - Unzip the downloaded files in a location of your choosing
- Run
BOTHthe DynamoDBLocal_lib and DynamoDBLocal.jar within the terminal to start the JVMjava -Djava.library.path=./DynamoDBLocal_lib -jar DynamoDBLocal.jar -sharedDbNOTE: This path config is for MacBooks -> Location for the Library file, JAR file and persistentDB.
java -Djava.library.path=/Users/YOUR_USERNAME/Downloads/dynamodb_local/DynamoDBLocal_lib -jar /Users/YOUR_USERNAME/Downloads/dynamodb_local/DynamoDBLocal.jar -sharedDb -dbPath /Users/lawrencejews/Downloads/PersistentDB