Open In App

NoSQL Data Architecture Patterns

Architecture Pattern is a logical way of categorizing data that will be stored on the Database. NoSQL is a type of database which helps to perform operations on big data and store it in a valid format. It is widely used because of its flexibility and a wide variety of services. 

Architecture Patterns of NoSQL: 
The data is stored in NoSQL in any of the following four data architecture patterns. 



1. Key-Value Store Database
2. Column Store Database
3. Document Database
4. Graph Database 

These are explained as following below. 

1. Key-Value Store Database: 
This model is one of the most basic models of NoSQL databases. As the name suggests, the data is stored in form of Key-Value Pairs. The key is usually a sequence of strings, integers or characters but can also be a more advanced data type. The value is typically linked or co-related to the key. The key-value pair storage databases generally store data as a hash table where each key is unique. The value can be of any type (JSON, BLOB(Binary Large Object), strings, etc). This type of pattern is usually used in shopping websites or e-commerce applications. 



Advantages: 

Limitations: 

Examples: 

2. Column Store Database: 
Rather than storing data in relational tuples, the data is stored in individual cells which are further grouped into columns. Column-oriented databases work only on columns. They store large amounts of data into columns together. Format and titles of the columns can diverge from one row to other. Every column is treated separately. But still, each individual column may contain multiple other columns like traditional databases. 
Basically, columns are mode of storage in this type. 

Advantages: 

Examples: 

3. Document Database: 
The document database fetches and accumulates data in form of key-value pairs but here, the values are called as Documents. Document can be stated as a complex data structure. Document here can be a form of text, arrays, strings, JSON, XML or any such format. The use of nested documents is also very common. It is very effective as most of the data created is usually in form of JSONs and is unstructured. 

Advantages: 

Limitations:  

Examples: 

 

Figure – Document Store Model in form of JSON documents

4. Graph Databases: 
Clearly, this architecture pattern deals with the storage and management of data in graphs. Graphs are basically structures that depict connections between two or more objects in some data. The objects or entities are called as nodes and are joined together by relationships called Edges. Each edge has a unique identifier. Each node serves as a point of contact for the graph. This pattern is very commonly used in social networks where there are a large number of entities and each entity has one or many characteristics which are connected by edges. The relational database pattern has tables that are loosely connected, whereas graphs are often very strong and rigid in nature. 

Advantages: 

Limitations: 
Wrong connections may lead to infinite loops. 

Examples:  

Figure – Graph model format of NoSQL Databases

 

Article Tags :