Databases 10 min read

Why MySQL Still Matters and When to Choose NoSQL Alternatives

The article compares relational databases like MySQL—highlighting their consistency, transaction support, and join capabilities—with NoSQL alternatives, explaining each type’s strengths and limitations in handling massive writes, schema changes, variable fields, and simple queries, and guides developers on when to choose each.

21CTO
21CTO
21CTO
Why MySQL Still Matters and When to Choose NoSQL Alternatives

Relational Databases

Relational databases store data in rows and columns, offering strong data consistency through transactions, low update overhead due to standardization, and powerful capabilities such as JOIN queries.

Maintain data consistency (transaction processing)

Low overhead for data updates (single definition of fields)

Support complex queries like JOIN

Overall high performance for general use

However, relational databases are less suitable for:

Massive data write workloads

Indexing or schema changes on tables with ongoing updates

Applications with flexible, non‑fixed fields

Simple queries that require ultra‑fast response

Massive Data Write Handling

Master‑slave replication can scale reads by adding slaves, but scaling writes is difficult. Adding more master servers can cause write conflicts and data inconsistency. Splitting data across multiple servers reduces per‑server load but prevents JOINs, requiring application‑level joins.

Indexing or Schema Changes on Active Tables

Creating indexes or altering table schemas requires exclusive locks, blocking data modifications during the operation. Long‑running index builds or schema changes can render tables unavailable for updates.

Shared lock: other connections can read but not modify data (read lock). Exclusive lock: other connections cannot read or write (write lock).

Variable‑Field Applications

When fields are not fixed, relational databases become cumbersome; frequent schema changes are painful, and using many placeholder columns leads to confusion.

Simple Queries Requiring Fast Returns

Relational databases parse SQL, manage locks, and incur overhead, making them less ideal for ultra‑fast simple queries where a NoSQL solution may be more appropriate.

NoSQL Databases

NoSQL databases do not support JOINs; data is stored independently, making distribution across multiple servers easy and write/read operations straightforward. Their main advantage is easy data sharding.

Performance can be improved vertically (enhancing a single server) or horizontally (adding cheap servers). Horizontal scaling is cost‑effective and allows incremental capacity growth.

Typical NoSQL Types

Key‑value stores (memcached, Redis), persistent key‑value stores (ROMA, Redis), document‑oriented databases (MongoDB, CouchDB), column‑oriented databases (Cassandra, HBase).

Key‑Value Stores

Data is stored as key‑value pairs. Temporary stores keep data in memory for fast access; persistent stores keep data on disk; hybrid stores like Redis keep data in memory and periodically flush to disk, combining speed with durability.

Data stored in both memory and disk

Very fast read/write performance

Data persists after power loss

Well‑suited for array‑type data

Document‑Oriented Databases

MongoDB and CouchDB allow schema‑less storage and support complex query conditions, though they lack full transaction support and JOIN capabilities.

Schema‑less design : No predefined tables, simplifying development.

Complex queries : Support rich query conditions despite missing transactions and joins.

Column‑Oriented Databases

Column‑oriented databases store data by column rather than row, offering high scalability and fast write performance for large datasets. They are ideal for batch processing and massive data updates.

Examples include Cassandra, HBase, and HyperTable, which are gaining attention due to explosive data growth.

Original Source

Signed-in readers can open the original source through BestHub's protected redirect.

Sign in to view source
Republication Notice

This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactadmin@besthub.devand we will review it promptly.

data modelingmysqlNoSQLdatabase scalingRelational Database
21CTO
Written by

21CTO

21CTO (21CTO.com) offers developers community, training, and services, making it your go‑to learning and service platform.

0 followers
Reader feedback

How this landed with the community

Sign in to like

Rate this article

Was this worth your time?

Sign in to rate
Discussion

0 Comments

Thoughtful readers leave field notes, pushback, and hard-won operational detail here.