- NoSQL
-
This article is about the class of database management systems. For the specific relational database management software, see NoSQL (RDBMS)."Structured storage" redirects here. It is not to be confused with COM Structured Storage.
In computing, NoSQL (sometimes expanded to "not only SQL") is a broad class of database management systems that differ from the classic model of the relational database management system (RDBMS) in some significant ways. These data stores may not require fixed table schemas, usually avoid join operations, and typically scale horizontally. Academic researchers typically refer to these databases as structured storage,[1][2][3][4] a term that includes classic relational databases as a subset.
Contents
History
Carlo Strozzi used the term NoSQL in 1998 to name his lightweight, open-source relational database that did not expose the standard SQL interface.[5] (Strozzi suggests that, as the current NoSQL movement "departs from the relational model altogether; it should therefore have been called more appropriately 'NoREL', or something to that effect.")[6]
Eric Evans, a Rackspace employee, reintroduced the term NoSQL in early 2009 when Johan Oskarsson of Last.fm wanted to organize an event to discuss open-source distributed databases.[7] The name attempted to label the emergence of a growing number of non-relational, distributed data stores that often did not attempt to provide ACID (atomicity, consistency, isolation, durability) guarantees, which are the key attributes of classic relational database systems such as IBM DB2, MySQL, Microsoft SQL Server, PostgreSQL, Oracle RDBMS, Informix, Oracle Rdb, etc.
In 2011, work began on UnQL (Unstructured Query Language), a specification for a query language for NoSQL databases.[8] It is built to query collections (versus tables) of documents (versus rows) with loosely defined fields (versus columns). UnQL is a superset of SQL within which SQL is a very constrained type of UnQL for which the queries always return the same fields (same number, names and types). However, UnQL does not cover the data definition language (DDL) SQL statements like
CREATE TABLE
orCREATE INDEX
.[9]Architecture
Typical modern relational databases have shown poor performance on certain data-intensive applications, including indexing a large number of documents, serving pages on high-traffic websites, and delivering streaming media.[10] Typical RDBMS implementations are tuned either for small but frequent read/write transactions or for large batch transactions with rare write accesses. NoSQL, on the other hand, can service heavy read/write workloads.[10] Real-world NoSQL deployments include Digg's 3 TB for green badges (markers that indicate stories upvoted by others in a social network)[11] and Facebook's 50 TB for inbox search.[12]
NoSQL architectures often provide weak consistency guarantees, such as eventual consistency, or transactions restricted to single data items. Some systems, however, provide full ACID guarantees in some instances by adding a supplementary middleware layer (e.g., AppScale and CloudTPS).[13][14] Two systems have been developed that provide snapshot isolation for column stores: Google's Percolator system based on BigTable,[15] and a transactional system for HBase developed at the University of Waterloo.[16] These systems, developed independently, use similar concepts to achieve multi-row distributed ACID transactions with snapshot isolation guarantee for the underlying column store, without the extra overhead of data management, middleware system deployment, or maintenance introduced by the middleware layer.
Several NoSQL systems employ a distributed architecture, with the data held in a redundant manner on several servers, often using a distributed hash table. In this way, the system can readily scale out by adding more servers, and failure of a server can be tolerated.[17]
Some NoSQL advocates[who?] promote very simple interfaces such as associative arrays or key-value pairs. Other systems, such as native XML databases, promote support of the XQuery standard.[citation needed] Newer systems such as CloudTPS also support join queries.[18]
Taxonomy
NoSQL implementations can be categorized by their manner of implementation:
Document store
Main articles: Document-oriented database and XML databaseName Language Notes BaseX Java, XQuery XML database Apache CouchDB Erlang eXist XQuery XML database Jackrabbit Java Lotus Notes and IBM Lotus Domino LotusScript, Java, IBM X Pages, others MultiValue MarkLogic Server XQuery XML database MongoDB C++ BSON (Binary format JSON) OrientDB Java SimpleDB Erlang Terrastore Java Recall FORTRAN Graph
Main article: Graph databaseName Language Notes AllegroGraph SPARQL RDF GraphStore DEX Java, C# High-performance Graph Database InfiniteGraph Java High-performance, scalable, distributed Graph Database Neo4j Java OrientDB Java FlockDB Scala Sones GraphDB C# Graph database with query language called GraphQL Pregel Key-value store
Key-value stores allow the application to store its data in a schema-less way. The data could be stored in a datatype of a programming language or an object. Because of this, there is no need for a fixed data model.[19] The following types exist:
Eventually‐consistent key‐value store
Hierarchical key-value store
Hosted services
Key-value cache in RAM
Key-value stores on disk
- BigTable
- CDB
- Citrusleaf database
- Keyspace
- LevelDB
- membase
- MemcacheDB
- Tarantool
- Tokyo Cabinet
- TreapDB
- Tuple space
- MongoDB
Ordered key-value stores
Multivalue databases
- Extensible Storage Engine (ESE/NT)
- OpenQM
- Revelation Software's OpenInsight
- Rocket U2
- D3 Pick database
- InterSystems Caché
Object database
Main article: Object database- db4o
- GemStone/S
- InterSystems Caché
- JADE
- ObjectDB
- Objectivity/DB
- ObjectStore
- Versant Object Database
- ZODB
Tabular
- BigTable
- Apache Hadoop
- Apache Hbase
- Hypertable
- Mnesia
Tuple store
- Apache River
- Tarantool
See also
- CAP theorem
- Comparison of object database management systems
- Comparison of structured storage software
- Faceted search
- List of object database management systems
- Triplestore
References
- ^ Hamilton, James (3 November 2009). "Perspectives: One Size Does Not Fit All". http://perspectives.mvdirona.com/CommentView,guid,afe46691-a293-4f9a-8900-5688a597726a.aspx. Retrieved 13 November 2009.
- ^ Lakshman, Avinash; Malik, Prashant. Cassandra — A Decentralized Structured Storage System. Cornell University. http://www.cs.cornell.edu/projects/ladis2009/papers/lakshman-ladis2009.pdf. Retrieved 13 November 2009.
- ^ Chang, Fay; Jeffrey Dean, Sanjay Ghemawat, Wilson C. Hsieh, Deborah A. Wallach, Mike Burrows, Tushar Chandra, Andrew Fikes, and Robert E. Gruber. Bigtable: A Distributed Storage System for Structured Data. Google. http://labs.google.com/papers/bigtable-osdi06.pdf. Retrieved 13 November 2009.
- ^ Kellerman, Jim. "HBase: structured storage of sparse data for Hadoop". http://www.rapleaf.com/pdfs/hbase_part_2.pdf. Retrieved 13 November 2009.[dead link]
- ^ Lith, Adam; Jakob Mattson (2010). "Investigating storage solutions for large data: A comparison of well performing and scalable data storage solutions for real time extraction and batch insertion of data" (PDF). Göteborg: Department of Computer Science and Engineering, Chalmers University of Technology. p. 15. http://publications.lib.chalmers.se/records/fulltext/123839.pdf. Retrieved 2011-05-12. "Carlo Strozzi first used the term NoSQL in 1998 as a name for his open source relational database that did not offer a SQL interface[...]"
- ^ "NoSQL Relational Database Management System: Home Page". Strozzi.it. 2007-10-02. http://www.strozzi.it/cgi-bin/CSA/tw7/I/en_US/nosql/Home%20Page. Retrieved 2010-03-29.
- ^ "NOSQL 2009". Blog.sym-link.com. 2009-05-12. http://blog.sym-link.com/2009/05/12/nosql_2009.html. Retrieved 2010-03-29.
- ^ http://unqlspec.org/display/UnQL/Home
- ^ Avram, Abel (04). "Interview: Richard Hipp on UnQL, a New Query Language for Document Databases". http://www.infoq.com. http://www.infoq.com/news/2011/08/UnQL. Retrieved 7 September 2011.
- ^ a b Agrawal, Rakesh et al. (2008). "The Claremont report on database research". SIGMOD Record (ACM) 37 (3): 9–19. doi:http://doi.acm.org/10.1145/1462571.1462573. ISSN 0163-5808. http://db.cs.berkeley.edu/claremont/claremontreport08.pdf.
- ^ "Looking to the future with Cassandra | Digg About". About.digg.com. 2009-09-09. http://about.digg.com/blog/looking-future-cassandra. Retrieved 2010-03-29.
- ^ "Cassandra". facebook.com. 2008-08-25. http://www.facebook.com/note.php?note_id=24413138919&id=9445547199&index=9. Retrieved 2011-08-19.
- ^ "Datastore Agnostic Transaction Support for Cloud Infrastructures". IEEE. 2011-07-04. http://cs.ucsb.edu/~ckrintz/papers/ieeecloud11.pdf.
- ^ "CloudTPS: Scalable Transactions for Web Applications in the Cloud". Globule.org. http://www.globule.org/publi/CSTWAC_ircs53.html. Retrieved 2010-03-29.
- ^ "Large-scale Incremental Processing Using Distributed Transactions and Notifications". The 9th USENIX Symposium on Operating Systems Design and Implementation (OSDI 2010), Oct 4–6, 2010, Vancouver, BC, Canada. http://www.usenix.org/events/osdi10/tech/full_papers/Peng.pdf. Retrieved 2010-10-15.
- ^ "Supporting Multi-row Distributed Transactions with Global Snapshot Isolation Using Bare-bones HBase". The 11th ACM/IEEE International Conference on Grid Computing (Grid 2010), Oct 25-29, 2010, Brussels, Belgium. http://www.cs.uwaterloo.ca/~c15zhang/ZhangDeSterckGrid2010.pdf. Retrieved 2010-10-15.
- ^ "Cassandra: Structured Storage System over a P2P Network" (PDF). http://static.last.fm/johan/nosql-20090611/cassandra_nosql.pdf. Retrieved 2010-03-29.
- ^ "Consistent Join Queries in Cloud Data Stores". Globule.org. http://www.globule.org/publi/CJQCDS_ircs68.html. Retrieved 2011-01-31.
- ^ Marc Seeger (2009-09-21). "Key-Value Stores: a practical overview". http://www.slideshare.net/marc.seeger/keyvalue-stores-a-practical-overview: slideshare. http://dba.stackexchange.com/questions/607/what-is-a-key-value-store-database. Retrieved 2010-03-09. "Key value stores allow the application developer to store schema-less data. This data is usually consisting of a string that represents the key, and the actual data that is considered to be the value in the "key - value" relationship. The data itself is usually some kind of primitive of the programming language (a string, an integer, an array) or an object that is being marshalled by the programming languages bindings to the key value store. This replaces the need for fixed data model and makes the requirement for properly formatted."
- ^ "Riak: An Open Source Scalable Data Store". 28 November 2010. https://wiki.basho.com. Retrieved 28 November 2010.
External links
- [1] on [ODBMS.ORG: NoSQL Data Stores Section]
- NoSQLforums.ORG: NoSQL Knowledgebase - Live Message Board
- NoSQL User Group on LinkedIn
- nosql-discussion on Google Groups
- nosqldatabases.com
- myNoSQL: news, articles and links about NoSQL
- nosql-databases.org
- computerworld.com : No to SQL? Anti-database movement gains steam
- Is Microsoft Feeling the "NoSQL" Heat?
- Information Week "The NoSQL Alternative"
- How RDF Databases Differ from Other NoSQL Solutions
- CouchOne
- NoSql Tapes
- [http://www.christof-strauch.de/nosqldbs.pdf NoSQL Databases (Introduction and Overview)
Database management systems Concepts - Database
- ACID
- CRUD
- Null
- Candidate key
- Foreign key
- Primary key
- Superkey
- Surrogate key
- Armstrong's axioms
- NoSQL
Objects - Relation (Table)
- View
- Transaction
- Log
- Trigger
- Index
- Stored procedure
- Cursor
- Partition
Components Database products:
Categories:- Database management systems
- Data management
- Distributed data stores
- NoSQL
Wikimedia Foundation. 2010.