SimpleDB is a distributed NoSQL database. It provides simple querying of structured data and requires no schema. It automatically indexes data and provides a web based API for storage and access. It charges only for what they use. SimpleDB provides availability and network partition tolerance by sacrificing consistency.
- Developer
- Country of Origin
- US
- Start Year
- 2007 [08]
- Project Type
- Commercial
- Written in
- Erlang
- Supported Languages
- Java
- Operating System
- Hosted
- License
- Proprietary
SimpleDB is a distributed NoSQL database. It provides simple querying of structured data and requires no schema. It automatically indexes data and provides a web based API for storage and access. It charges only for what they use. SimpleDB provides availability and network partition tolerance by sacrificing consistency.
History
SimpleDB was launched in 2007 and it was aimed to cooperate with Amazon Elastic Compute Cloud and Amazon S3. It is designed to provide a more efficient storage method for small files than Amazon S3.
Concurrency Control[04]
SimpleDB does not support concurrency control itself. However, applications can support optimistic concurrency control (OCC) by maintaining a version number attribute and performing a conditional update on the value of this version number.
Data Model[05]
SimpleDB organizes data as a table. Rows represent items and columns represent attributes. Items are attribute-value pairs. A cell is intersection of a row and a column and it can contain empty value or multiple values.
Indexes
SimpleDB does support index but no material shows what kind of index method it applies.
Isolation Levels[06]
SimpleDB maintains multiple copies of each data. A successful write guarantees all copies of data is durable. There are two read consistency options: eventually consistent read and consistent read. A consistent read corresponds to read committed isolation level because it guarantees that the return value is the latest. An eventually consistent read acts like best efforts. It does not ensure that the copy of data is the latest but it is acceptable to increase throughput for some applications.
Query Execution
No material shows the query execution choice. Since SimpleDB is NoSQL DBMS, I guess it may process one tuple at a time.
Storage Architecture
No material shows the exact storage methods. I guess it is disk-oriented because it guarantees the durability of data and the simplest way is to store the data on disks.
Storage Model
No materials show the storage model of SimpleDB. It is based on key-value storage for NoSQL queries.
Citations
8 sources- AWS | Amazon SimpleDB – Simple Database Service amazon.com
- Amazon SimpleDB Documentation amazon.com
- Amazon SimpleDB - Wikipedia wikipedia.org
- Performing a Conditional Put - Amazon SimpleDB amazon.com
- Data Model - Amazon SimpleDB amazon.com
- Consistency - Amazon SimpleDB amazon.com
- API Usage - Amazon SimpleDB amazon.com
- Announcing Amazon SimpleDB (limited beta) - AWS amazon.com