NoSQL
Overview
NoSQL (originally referring to "non-SQL" or "non-relational") is an approach to database design that focuses on providing a mechanism for storage and retrieval of data that is modeled in means other than the tabular relations used in relational databases. Instead of the typical tabular structure of a relational database, NoSQL databases house data within one data structure. Since this non-relational database design does not require a schema, it offers rapid scalability to manage large and typically unstructured data sets. NoSQL systems are also sometimes called "Not only SQL" to emphasize that they may support SQL-like query languages or sit alongside SQL databases in polyglot-persistent architectures https://en.wikipedia.org/wiki/NoSQL
Classification
From https://en.wikipedia.org/wiki/NoSQL and Strauch, Christof. "NoSQL Databases" (PDF).
Type |
Notable examples of this type |
Key--value cache |
Apache Ignite, Couchbase, Coherence, eXtreme Scale, Hazelcast, Infinispan, Memcached, Redis, Velocity |
Key--value store |
Azure Cosmos DB, ArangoDB, Amazon DynamoDB, Aerospike, Couchbase, ScyllaDB |
Key--value store (eventually consistent) |
Azure Cosmos DB, Oracle NoSQL Database, Riak, Voldemort |
Key--value store (ordered) |
FoundationDB, InfinityDB, LMDB, MemcacheDB |
Tuple store |
Apache River, GigaSpaces, Tarantool, TIBCO ActiveSpaces, OpenLink Virtuoso |
Triplestore |
AllegroGraph, MarkLogic, Ontotext-OWLIM, Oracle NoSQL database, Profium Sense, Virtuoso Universal Server |
Object database |
Objectivity/DB, Perst, ZODB, db4o, GemStone/S, InterSystems Caché, JADE, ObjectDatabase++, ObjectDB, ObjectStore, ODABA, Realm, OpenLink Virtuoso, Versant Object Database |
Document store |
Azure Cosmos DB, ArangoDB, BaseX, Clusterpoint, Couchbase, CouchDB, DocumentDB, eXist-db, IBM Domino, MarkLogic, MongoDB, RavenDB, Qizx, RethinkDB, Elasticsearch, OrientDB |
Wide-column store |
Azure Cosmos DB, Amazon DynamoDB, Bigtable, Cassandra, Google Cloud Datastore, HBase, Hypertable, ScyllaDB |
Native multi-model database |
ArangoDB, Azure Cosmos DB, OrientDB, MarkLogic, Apache Ignite,[23][24] Couchbase, FoundationDB, Oracle Database |
Graph database |
Azure Cosmos DB, AllegroGraph, ArangoDB, InfiniteGraph, Apache Giraph, MarkLogic, Neo4J, OrientDB, Virtuoso |
Multivalue database |
D3 Pick database, Extensible Storage Engine (ESE/NT), InfinityDB, InterSystems Caché, jBASE Pick database, mvBase Rocket Software, mvEnterprise Rocket Software, Northgate Information Solutions Reality (the original Pick/MV Database), OpenQM, Revelation Software's OpenInsight (Windows) and Advanced Revelation (DOS), UniData Rocket U2, UniVerse Rocket U2 |
Hazelcast
It is a product that implements various distributed objects. In particular: key-value storage, queue, locking, etc. Provisions on distribution, scalability, fault tolerance and other positive properties do not apply to them.
Typical use-cases for Hazelcast include:
- Distributed cache, often in front of a database
- Cache-as-a-service
- Spring Cache
- Application scaling
- NoSQL data store
- Web Session clustering
- Microservices infrastructure
- storage for temporal data, like web sessions
- in-memory data processing and analytics
- memcached alternative with a protocol compatible interface
- Cross-JVM communication and shared storage
References