DynamoDB is a managed NoSQL database service provided by Amazon Web Services. As it is managed by Amazon, users do not have to worry about operations such as hardware provisioning, configuration, and scaling.[04]
- Developer
- Country of Origin
- US
- Start Year
- 2012 [17]
- Project Type
- Commercial
- Written in
- Java
- Operating System
- Hosted
- License
- Proprietary
The offering primarily targets key-value and document storage.
DynamoDB is a managed NoSQL database service provided by Amazon Web Services. As it is managed by Amazon, users do not have to worry about operations such as hardware provisioning, configuration, and scaling. The offering primarily targets key-value and document storage.[04]
History[05][06]
Amazon runs an e-commerce platform for millions of concurrent users, so the underlying services powering the platform must be highly reliable and scalable. Failures in infrastructure would have significant financial consequences and would degrade consumer trust in Amazon's platform. Thus, the motivating purpose behind DynamoDB was a data-store used by these services that could keep up in both availability and scalability such that infrastructure failures would not affect user experience.
The original concept and implementation of DynamoDB was first introduced in 2007 with a paper titled: "Dynamo: Amazon’s Highly Available Key-value Store"
The managed DynamoDB service was launched by AWS in January of 2012.
Compression[07]
While DynamoDB doesn't natively support compression, users can compress large attributes into binary data using compression algorithms like LZO or GZIP.
Concurrency Control[08]
Users have the ability to enable Optimistic Locking for DynamoDB using the AWS Java SDK.
Data Model[09]
DynamoDB is schemaless. Each table requires a primary key to identify its corresponding data item. However, there are no such constraints on non-key attributes.
DynamoDB can hold both structured or semi-structured data, such as JSON or XML.
Foreign Keys[10]
DynamoDB does not natively support foreign keys as it is not a relational database.
Isolation Levels[11]
DynamoDB has three configurable isolation levels: Read Uncommitted, Read Committed, and Repeatable Reads.
Joins[12]
DynamoDB does not support joins natively as it is a key-value store and not a relational database. However, Amazon's EMR service supports joining DynamoDB tables.
Storage Architecture[05]
DynamoDB supports a pluggable local persistence engine that can range from in-memory buffers with persistent backing to purely disk-oriented ones. This allows it to be flexible with an application's access patterns.
Stored Procedures[14][15]
Although DynamoDB doesn't natively support stored procedures, users can use AWS Lambdas for a similar effect.
System Architecture[05]
Nodes are partitioned via consistent hashing, and utilize gossip-based membership protocol.
Citations
17 sources- Fast NoSQL Key-Value Database – Amazon DynamoDB – AWS amazon.com
- Amazon DynamoDB Documentation amazon.com
- Amazon DynamoDB - Wikipedia wikipedia.org
- Amazon DynamoDB - Developer Guide amazon.com
- Microsoft Word - sosp067-decandia1.doc allthingsdistributed.com
- Amazon switches on DynamoDB cloud database service | ZDNET zdnet.com
- Best practices for storing large items and attributes in DynamoDB - Amazon DynamoDB amazon.com
- DynamoDB and optimistic locking with version number - Amazon DynamoDB amazon.com
- Learn how to go from SQL to NoSQL - Amazon DynamoDB amazon.com
- What is Amazon DynamoDB? - Amazon DynamoDB amazon.com
- dynamodb-transactions/DESIGN.md at master · awslabs/dynamodb-transactions · GitHub github.com
- Export, import, query, and join tables in DynamoDB using Amazon EMR - Amazon EMR amazon.com
- Querying tables in DynamoDB - Amazon DynamoDB amazon.com
- Migrating to DynamoDB from a relational database - Amazon DynamoDB amazon.com
- Forums | AWS re:Post repost.aws
- DynamoDB streams use cases and design patterns | AWS Database Blog amazon.com
- https://www.allthingsdistributed.com/2012/01/amazon-dynamodb.html allthingsdistributed.com