It is true that the way web applications deal with data has changed significantly over the past decade. Bigger amounts of data are being collected and more users are accessing this data concurrently than ever before. This means that scalability and performance are more of a challenge than ever for relational databases that are schema-based and therefore can be harder to scale.
The Evolution of NoSQL
The SQL scalability issue was recognized by some Web 2.0 companies with huge environments, growing data and big infrastructure needs, like Google, Amazon, or Facebook. They presented their own solutions to the problem – technologies like BigTable, DynamoDB, and Cassandra.
This interest for alternatives resulted in a number of NoSQL Database Management Systems (DBMS’s), with a clear direction to performance, reliability, and consistency. A number of existing indexing structures were reused and improved trying to enhance searching and reading performance.
The first solutions of NoSQL database types were developed by big companies to meet their specific needs, like Google’s BigTable, maybe the first NoSQL system, and Amazon’s DynamoDB.
The success of these proprietary systems generated a big interest and there appeared a number of similar open-source and proprietary database systems, some of the most popular ones being Hypertable, Cassandra, MongoDB, DynamoDB, HBase, and Redis.
What Makes NoSQL Different?
One important difference between NoSQL databases and common relational databases is the fact that NoSQL is a form of unstructured storage.
This means that NoSQL databases do not have a fixed table structure like the ones found in relational databases.
Advantages and Disadvantages of NoSQL Databases
Advantages
NoSQL databases have many advantages compared to SQL relational databases.
One important, underlying difference is that NoSQL databases have a simple and flexible structure, without a schema.
NoSQL databases are based on key-value pairs.
NoSQL databases may include column store, document store, key value store, graph store, object store, XML store, and other data store modes.
Each value in the database will have a key usually. Some NoSQL database models also allow developers to store serialized objects into the database, not only simple string values.
Open-source NoSQL databases don’t require expensive licensing fees and can run on low-resources hardware, rendering their deployment cost-effective.
Also, when working with NoSQL databases, either open-source or proprietary, scalation is easier and cheaper than when working with relational databases. This is because it’s done by horizontally scaling and distributing the load on all nodes, rather than the usual vertical done with relational database systems, which is replacing the main host with a more powerful one.
Disadvantages
Of course, NoSQL databases are not perfect, and may not be always the right choice.
First, most NoSQL databases do not support reliability features that are natively supported by relational databases. These reliability features can be atomicity, consistency, isolation, and durability. This also means that NoSQL databases, which don’t support those features, trade consistency for performance and scalability.
In order to support reliability and consistency features, developers must implement their own personal code, which makes the system more complex.
This might limit the number of applications that can rely on NoSQL databases for secure and reliable transactions, like banking systems or personal data management.
Other problem found in most NoSQL databases is incompatibility with SQL queries. This means that a manual or proprietary querying language is needed, adding more time and complexity.
NoSQL vs. Relational Databases
This table provides a quick feature comparison between NoSQL and relational databases:
It should be noted that the table shows a comparison on the database level, not the various database management systems that implement both models. These systems provide their own proprietary techniques to overcome some of the problems and shortcomings in both systems, and in some cases, significantly improve performance and reliability.
NoSQL Data Store Types
Key Value Store
In the Key Value store type, it is used a hash table in which a unique key points to an specific item.
Keys can be organized into logical groups, only requiring keys to be unique on their own group. This allows the existence of identical keys in different logical groups. The following table contains an example of a key-value store, in which the key is the name of the city, and the value is the address for Ulster University in that city.
Some implementations of the key value store provide caching mechanisms, which enhance the performance in a notable amount.
Key is the only need to deal with the items on the table. Data is stored in a form of a string, JSON, or BLOB (Binary Large OBject).
One of the biggest issues in this form of database is the lack of consistency at the database level. This can be improved by the developers with their own code, but as mentioned before, this adds more effort, complexity, and time.
The most famous NoSQL database that uses a key value store is Amazon’s DynamoDB.
Document Store
Document stores are similar to key value stores in that they are schema-less and based on a key-value model. Also both share many of the same advantages and disadvantages. They lack consistency on the database level, which makes way for applications to provide more reliability and consistency features.
There are however, some important differences between the two.
In Document Stores, the values (documents) provide encoding for the data stored. Those encodings can be XML, JSON, or BSON (Binary encoded JSON).
Also, querying based on data is possible.
The most popular database application that relies on a Document Store is MongoDB.
Column Store
In a Column Store database, data is stored in columns, as contrast to being stored in rows as is done in most relational database management systems.
A Column Store is comprised of one or more Column Families that logically group specific columns of the database. A key is used to identify and point to a number of columns, with a keyspace attribute that defines the scope of this key. Each column contains tuples of names-values, ordered and comma separated.
Column Stores have fast read/write access to the information. Rows that correspond to a single column are stored as a single disk entry. This means faster access during read/write operations.
The most popular databases that use the column store include Google’s BigTable, HBase, and Cassandra.
Graph Base
In a Graph Base model, a directed graph structure is used to represent the data. The graph is comprised of edges and nodes.
Formally, a graph is a representation of a pack of objects, where some pairs of objects are connected by links. The interconnected objects are represented by mathematical abstractions, called vertices, and the links that connect some pairs of vertices are called edges. A set of vertices and the edges that connect them is what is called graph.
This illustrates the structure of a graph based database that uses edges and nodes. These nodes are organized by some relationships with other nodes, which are represented by edges between the nodes. Both the nodes and the relationships have some defined properties.
Graph databases are used typically in social networking applications. They allow developers to focus more on relations between objects rather than on the objects themselves. In this context, they indeed allow for a scalable and easy-to-use environment.
Currently, InfoGrid and InfiniteGraph are the most popular graph databases.
NoSQL Database Management Systems
The following table provides a brief comparison between different NoSQL database models.
MongoDB has a flexible storage system, which means stored objects are not necessarily required to have the same structure or fields. MongoDB also has some optimization features, which distributes the data collections across, being overall a more balanced and performance focused system.
Other NoSQL database systems like Apache CouchDB, are also document store type, and share a lot of features with MongoDB, with the addition that the database can be accessed using RESTful APIs.
REST is an architecture style consisting of a coordinated set of constraints applied to components, connectors, and data elements, within the World Wide Web. It relies on a stateless, client-server, cacheable communications protocol (e.g., the HTTP protocol).
RESTful applications use HTTP requests to post, read, and delete data.
As for column based databases, Hypertable is written in C++ and it is based on Google’s BigTable. It supports distributing data stores across nodes to maximize scalability, just like MongoDB and CouchDB.
One of the most popular NoSQL database is Cassandra, developed by Facebook.
Cassandra is a column store database that includes a lot of features aimed at reliability and fault tolerance.
Rather than providing an in-depth look at each NoSQL database product, Cassandra and MongoDB, two of the most widely used NoSQL database management systems, will be explored in the next subsections
Cassandra
Cassandra is developed by Facebook.
The goal behind Cassandra was to create a DBMS that has no single point of failure and provides maximum availability.
Cassandra is a column store database. But some studies referred to Cassandra as a hybrid system, inspired by Google’s BigTable, which is a column store type, and Amazon’s DynamoDB, which is a key-value type.
This is achieved by providing a key-value system, but the keys in Cassandra point to a set of column families, with reliance on Google’s BigTable distributed file system and Dynamo’s availability features (distributed hash table).
Cassandra’s design is thought to store huge amounts of data distributed across different nodes. Designed to handle massive amounts of data, spread out across many servers, while providing a highly available service with no single point of failure, which is essential for a big service like Facebook.
The main features of Cassandra include:
- No single point of failure. In order to achieve this, Cassandra must run on a cluster of nodes. The data on each cluster is not the same, but the management software is. When a failure in one of the nodes happens, the data on that node will be inaccessible. However, other nodes (and data) will still be accessible.
- Distributed Hashing. A scheme that provides hash table functionality in a way that the addition or removal of one slot does not change the mapping of keys to slots. This makes possible the distribution of the load to servers or nodes according to their capacity, and in turn, minimize downtime.
- Relatively easy to use Client Interface. Cassandra uses Apache Thrift for its client interface. It provides a cross-language RPC client, but most developers prefer open-source alternatives built on top of Apple Thrift, such as Hector, for example.
- Other availability features. Other of Cassandra’s features is data replication. In essence, it mirrors data to other nodes in the cluster. Replication can be random, or specific to maximize data protection by placing in a node in a different data center, for example. Another feature found in Cassandra is the partitioning policy, that decides in which the node the key will be stored. This can also be random or in order. When using both types of partitioning policies, Cassandra can strike a balance between load balancing and query performance optimization.
- Consistency. Features like replication make consistency a huge challenge. This means that all nodes must be up-to-date at any point in time with the latest values, or at the time a read operation is triggered. Eventually, though, Cassandra tries to maintain a balance between replication actions and read/write actions by providing this flexibility of custom features to the developer.
- Read/Write Actions. The client sends a request to a single Cassandra node. The node, according to the replication policy, stores the data to the cluster. Each node first performs the data change in the commit log, and then updates the table structure with the change, both done synchronously. The read operation is very similar, a read request is sent to a single node, and that single node is the one that determines which node holds the data, according to the partitioning/placement policy.
MongoDB
MongoDB is a schema-free, document-oriented database written in C++. As a document store based, it stores values (referred to as documents) in the form of encoded data.
The choice of encoded format in MongoDB is JSON. This means that even if the data is nested inside JSON documents, it will still be queryable and indexable.
The following subsections describe some of the key features available in MongoDB.
Shards
Sharding is the partitioning and distributing of data across multiple nodes. A shard is a collection of MongoDB nodes, in contrast to Cassandra where nodes are symmetrically distributed. Using shards also means the ability to make an horizontally scalation across multiple nodes. In the case that there is an application using a single database server, it can be converted to sharded cluster with very few changes to the original application. Software is almost completely decoupled from the public APIs exposed to the client side.
Mongo Query Language
As mentioned earlier, MongoDB uses a RESTful API. To retrieve certain documents from a db collection, a query document is created containing the fields that the desired documents should match.
Actions
In MongoDB, there is a group of servers called routers. Each one acts as a server for one or more clients. Also the cluster contains a group of configuration servers. Each one holds a copy of the metadata indicating which shard contains what data. Read and write actions are sent from the clients to one of the router servers in the cluster, and are automatically routed by that server to the appropriate shards that contain the data with the help of the configuration servers.
Similar to Cassandra, a shard in MongoDB has a data replication scheme, which creates a copy set of each shard that holds exactly the same data. There are two types of replica schemes in MongoDB: Master-Slave replication and Replica-Set replication. Replica-Set provides more automation and better failure handling, while Master-Slave requires the administrator intervention more often. Regardless of the replication scheme, at any point in time in a replica set, only one shard acts as the primary shard, all other replica shards are secondary shards. All write and read operations go to the primary shard, and are then distributed evenly (if needed) to the other secondary shards in the set.
In the graphic below, we see the MongoDB architecture explained, showing the router servers in green, the configuration servers in yellow, and the shards that contain the blue MongoDB nodes.
It should be noted that sharding (or sharing the data between shards) in MongoDB is completely automatic, which reduces the failure rate and makes it a highly scalable database management system.
Indexing Structures for NoSQL Databases
Indexing is the process of associating a key with the location of a corresponding data record. There are many indexing data structures used in NoSQL databases. We will briefly discuss some of the more common methods; namely, B-Tree indexing, T-Tree indexing, and O2-Tree indexing.
B-Tree Indexing
One of the most common index structures in DBMS’s.
In B-trees, internal nodes can have a variable number of child nodes in some predefined range.
One major difference from other tree structures is B-Tree allows nodes to have a variable number of child nodes, meaning less tree balancing but more unused space.
The B+-Tree is one of the most popular variants of B-Trees. It is an improvement over B-Tree that requires all keys to reside in the leaves.
T-Tree Indexing
The data structure of T-Trees was designed by mixing features from AVL-Trees and B-Trees.
AVL-Trees are a type of self-balancing binary search trees, while B-Trees are unbalanced. Also each node can have a different number of children.
The structure of a T-Tree is very similar to the AVL-Tree and the B-Tree.
Each node stores more than one {key-value, pointer} tuple. Also, binary search is used in combination with the multi-tuple nodes to produce better results in storage and performance.
A T-Tree has three types of nodes: A T-Node that has a right and left child, a leaf node with no children, and a half-leaf node with only one child.
It is believed that T-Trees have better overall performance than AVL-Trees.
O2-Tree Indexing
The O2-Tree is basically an evolution of Red-Black trees, a form of a Binary-Search tree, in which a leaf node contains the {key value, pointer} tuples.
O2-Tree was created to enhance the performance of current indexing methods. An O2-Tree of order m (m ≥ 2), where m is the minimum degree of the tree, satisfies the following properties:
- Every node is either red or black. The root is black.
- Every leaf node is colored black and consists of a block or page that holds “key value, record-pointer” pairs.
- If a node is red, then both its children are black.
- For each internal node, all simple paths from the node to descendant leaf-nodes contain the same number of black nodes. Each internal node holds a single key value.
- Leaf-nodes are blocks that have between ⌈m/2⌉ and m “key-value, record-pointer” pairs.
- If a tree has a single node, then it must be a leaf, which is the root of the tree, and it can have between 1 to m key data items.
- Leaf nodes are double-linked in forward and backward directions.
Here, we see a clear performance comparison between O2-Tree, T-Tree, B+-Tree, AVL-Tree, and Red-Black Tree:
The order of the T-Tree, B+-Tree, and the O2-Tree used was m = 512.
Time is recorded for operations of search, insert, and delete with update ratios with values between 0%-100% for an index of 50M records, with the operations resulting in adding another 50M records to the index.
It is clear that with an update ratio of 0-10%, B-Tree and T-Tree perform better than O2-Tree. However, with the update ratio increasing, O2-Tree index performs significantly better than most other data structures, with the B-Tree and Red-Black Tree structures suffering the most.
The Case for NoSQL?
A quick introduction to NoSQL databases, highlighting the areas where traditional relational databases fall short, leads to the first takeaway:
"While relational databases offer consistency, they are not optimized for high performance in applications where massive data is stored and processed frequently"
NoSQL databases gained a lot of popularity due to high performance, high scalability and ease of access; however, they still lack some important points about consistency and reliability.
Fortunately, a number of NoSQL DBMSs face these challenges by offering new features to enhance their weak points.
It is also important to mention that not all NoSQL database systems perform better than relational databases.
MongoDB and Cassandra have similar and usually better performance than relational databases in write and delete operations.
There is no direct correlation between the store type and the performance of a NoSQL DBMS. NoSQL implementations often have changes, so performance may vary.
That’s why performance measurements across database types in different studies should always be updated with the latest versions of database software in order for those numbers to be accurate.
While It is not possible to offer a definitive verdict on performance, here are a few points to keep in mind:
- Traditional B-Tree and T-Tree indexing is commonly used in traditional databases.
- One study offered improvements and enhancements by combining the characteristics of multiple indexing structures to come up with the O2-Tree.
- The O2-Tree outperformed other structures in most tests, especially with huge datasets and high update ratios.
- The B-Tree structure delivered the worst performance of all indexing structures covered in this article.
Future work faces a challenge to enhance the consistency of NoSQL DBMSs. The integration of both systems, NoSQL and relational databases, is an area to further explore.
Finally, it’s important to note that NoSQL is a welcomed addition to existing database standards, but with a few important caveats. NoSQL trades reliability and consistency features for sheer performance and scalability. This renders it a specialized solution, as the number of applications that can rely on NoSQL databases is still limited.
The upside? Specialization might not offer much in the way of flexibility, but when you want to get a specialized job done as quickly and efficiently as possible, you need no other thing than NoSQL.
Font: Toptal. https://www.toptal.com/database/the-definitive-guide-to-nosql-databases
Original author:Mohamad Altarad
About Pandora FMS
Pandora FMS is a flexible monitoring system, capable of monitoring devices, infrastructures, applications, services and business processes.
Of course, one of the things that Pandora FMS can control is the hard disks of your computers.
Would you like to know more about what Pandora FMS can offer you? Discover it by entering here: https://pandorafms.com
If you have more than 100 devices to monitor, you can contact us through the following form: https://pandorafms.com/en/contact/
Also, remember that if your monitoring needs are more limited you have at your disposal the OpenSource version of Pandora FMS. Find more information here: https://pandorafms.org
Do not hesitate to send us your queries. The Pandora FMS team will be happy to assist you!

El equipo de redacción de Pandora FMS está formado por un conjunto de escritores y profesionales de las TI con una cosa en común: su pasión por la monitorización de sistemas informáticos.
Pandora FMS’s editorial team is made up of a group of writers and IT professionals with one thing in common: their passion for computer system monitoring.