In the field of database design, amulti-model database is adatabase management system designed to support multipledata models against a single, integrated backend. In contrast, most database management systems are organized around a single data model that determines how data can be organized, stored, and manipulated.[1]Document,graph,relational, andkey–value models are examples of data models that may be supported by a multi-model database.
Therelational data model became popular after its publication byEdgar F. Codd in 1970. Due to increasing requirements forhorizontal scalability andfault tolerance,NoSQL databases became prominent after 2009. NoSQL databases use a variety of data models, withdocument,graph, and key–value models being popular.[2]
A multi-model database is a database that can store, index and query data in more than one model. For some time, databases have primarily supported only one model, such as:relational database,document-oriented database,graph database ortriplestore. A database that combines many of these is multi-model. This should not be confused with multimodal database systems such asPixeltable orApertureDB, which focus on unified management of different media types (images, video, audio, text) rather than different data models.
For some time,[vague] it was all but forgotten (or considered irrelevant) that there were any other database models besides relational.[citation needed] The relational model and notion ofthird normal form were the default standard for all data storage. However, prior to the dominance of relational data modeling, from about 1980 to 2005, thehierarchical database model was commonly used. Since 2000 or 2010, manyNoSQL models that are non-relational, including documents, triples, key–value stores and graphs are popular. Arguably,geospatial data,temporal data, andtext data are also separate models, though indexed, queryable text data is generally termed a "search engine" rather than a database.[citation needed]
The first time the word "multi-model" has been associated to the databases was on May 30, 2012 in Cologne, Germany, during theLuca Garulli's key note "NoSQL Adoption – What’s the Next Step?".[3][4] Luca Garulli envisioned the evolution of the 1st generation NoSQL products into new products with more features able to be used by multiple use cases.
The idea of multi-model databases can be traced back toObject–Relational Data Management Systems (ORDBMS) in the early 1990s and in a more broader scope even tofederated andintegrated DBMSs in the early 1980s. An ORDBMS system manages different types of data such as relational, object, text and spatial by plugging domain specific data types, functions and index implementations into the DBMS kernels. A multi-model database is most directly a response to the "polyglot persistence" approach of knitting together multiple database products, each handing a different model, to achieve a multi-model capability as described byMartin Fowler.[5] This strategy has two major disadvantages: it leads to a significant increase in operational complexity, and there is no support for maintaining data consistency across the separate data stores, so multi-model databases have begun to fill in this gap.
Multi-model databases are intended to offer the data modeling advantages of polyglot persistence,[5] without its disadvantages. Operational complexity, in particular, is reduced through the use of a single data store.[2]
As more and more platforms are proposed to deal with multi-model data, there are a few works on benchmarking multi-model databases. For instance,Pluciennik,[6]Oliveira,[7] andUniBench[8] reviewed existing multi-model databases and made an evaluation effort towards comparing multi-model databases and other SQL and NoSQL databases respectively. They pointed out that the advantages of multi-model databases over single-model databases are as follows :
The main difference between the available multi-model databases is related to their architectures. Multi-model databases can support different models either within the engine or via different layers on top of the engine. Some products may provide an engine which supports documents and graphs while others provide layers on top of a key-key store.[9] With a layered architecture, each data model is provided via its owncomponent.
In addition to offering multiple data models in a single data store, some databases allow developers to easily define custom data models. This capability is enabled by ACID transactions with high performance and scalability. In order for a custom data model to support concurrent updates, the database must be able to synchronize updates across multiple keys. ACID transactions, if they are sufficiently performant, allow such synchronization.[10] JSON documents, graphs, and relational tables can all be implemented in a manner that inherits the horizontal scalability and fault-tolerance of the underlying data store.
The traditional theory of relations is not enough to accurately describe multi-model database systems. Recent research[11] is focused on developing a new theoretical foundation for these systems.Category theory can provide a unified, rigorous language for modeling, integrating, and transforming different data models. By representing multi-model data as sets and their relationships as functions or relations within the Set category, we can create a formal framework to describe, manipulate, and understand various data models and how they interact.
{{cite journal}}: CS1 maint: multiple names: authors list (link)