Stable Release in branch 10.0
10.0.38
Released 29 Jan 2019
(7 years ago)
SoftwareMariaDB
Version10.0
Status
End of life
Initial release10.0.0
11 Nov 2012
(13 years ago)
Latest release10.0.38
29 Jan 2019
(7 years ago)
Community EOL31 Mar 2019
(Ended 7 years ago)
Enterprise EOL31 Mar 2019
(Ended 7 years ago)
Extended EOL31 Mar 2019
(Ended 7 years ago)
Release noteshttps://mariadb.com/kb/en/mariadb-10038-release-notes/
Source codehttps://github.com/mariadb/server/tree/mariadb-10.0.38
Documentationhttps://mariadb.com/kb/en/documentation/
MariaDB 10.0 ReleasesView full list

What Is New in MariaDB 10.0

MariaDB 10.0 is a major release packed with enterprise features that significantly diverge from its MySQL roots. It introduces powerful new storage engines, replication enhancements, and performance optimizations that make it a robust choice for modern database workloads.

Category Key Changes
New Features Galera Cluster integration, Cassandra storage engine, Temporal Data Tables, Multi-source replication
Improvements Faster replication, Enhanced security with password validation plugin, Optimizer improvements
Deprecated & Removed Deprecated old password hashing, Removal of some legacy MySQL features

How does Galera Cluster change high availability?

Galera Cluster integration is the flagship feature of MariaDB 10.0, providing true multi-master synchronous replication. This means you can perform reads and writes on any node in the cluster without worrying about replication lag or data conflicts.

In practice, this transforms how you design for high availability. Automatic node provisioning, causal reads, and virtually synchronous replication eliminate the traditional master-slave complexity. You get built-in fault tolerance and data consistency across all nodes, which is a game-changer for applications requiring zero-downtime operations.

What can the Cassandra Storage Engine do?

The Cassandra Storage Engine (SE) allows you to query Apache Cassandra data directly from MariaDB. It creates a bridge between the relational world of SQL and Cassandra's wide-column NoSQL data model.

This matters because it enables powerful hybrid use cases. You can perform SQL JOINs between your local MariaDB tables and remote Cassandra column families, combining real-time transactional data with massive-scale distributed data. It effectively makes Cassandra look like another MariaDB storage engine, which simplifies application logic.

Why use Temporal Data Tables?

Temporal Data Tables (system-versioned tables) automatically track the history of all row changes. When you update or delete a row, the old version is preserved in a history table with timestamps.

This is incredibly useful for auditing and point-in-time queries. You can easily see what your data looked like at any moment in the past without building custom trigger-based solutions. The syntax is straightforward; you just add WITH SYSTEM VERSIONING to your table definition and MariaDB handles the rest.

How does multi-source replication work?

Multi-source replication allows a single MariaDB slave to replicate from multiple masters simultaneously. This consolidates data from different sources into one central server for reporting and analysis.

You configure multiple independent replication channels, each with its own master connection and relay logs. This is a step up from traditional replication where a slave could only have one master. It's perfect for aggregating data from various shards or different database instances into a central data warehouse.

FAQ

Is MariaDB 10.0 a drop-in replacement for MySQL?
Mostly yes, but with important caveats. While it maintains high compatibility, features like Galera Cluster and the deprecation of old password hashing mean you should test your application thoroughly before migrating. Some legacy MySQL behaviors might differ.

When should I use the Cassandra Storage Engine?
Use it when you need to combine SQL queries with large-scale Cassandra data. It's ideal for analytics on Cassandra data or for applications that need to join operational data with historical data stored in Cassandra. It's not a replacement for native Cassandra drivers in performance-critical paths.

How does Galera Cluster handle write conflicts?
Galera uses a certification-based replication model that prevents conflicts by checking for write-set collisions across nodes. If two nodes try to modify the same row simultaneously, one transaction will abort and need to be retried. Application logic should handle these retries.

Can I use Temporal Tables with existing applications?
Yes, system versioning is transparent to most applications. Your existing INSERT, UPDATE, and DELETE statements will work unchanged. The history tracking happens automatically in the background, though you'll need new queries to access the historical data.

What's the performance impact of multi-source replication?
The impact depends on the workload from all masters. The slave server needs sufficient I/O and CPU capacity to handle multiple replication streams. Each channel maintains its own I/O and SQL threads, so resource usage scales with the number of masters you're replicating from.

Releases In Branch 10.0

VersionRelease date
10.0.3829 Jan 2019
(7 years ago)
10.0.3730 Oct 2018
(7 years ago)
10.0.3631 Jul 2018
(7 years ago)
10.0.3501 May 2018
(8 years ago)
10.0.3427 Jan 2018
(8 years ago)
10.0.3327 Oct 2017
(8 years ago)
10.0.3204 Aug 2017
(8 years ago)
10.0.3119 May 2017
(9 years ago)
10.0.3006 Mar 2017
(9 years ago)
10.0.2912 Jan 2017
(9 years ago)
10.0.2827 Oct 2016
(9 years ago)
10.0.2724 Aug 2016
(9 years ago)
10.0.2623 Jun 2016
(10 years ago)
10.0.2528 Apr 2016
(10 years ago)
10.0.2417 Feb 2016
(10 years ago)
10.0.2316 Dec 2015
(10 years ago)
10.0.2228 Oct 2015
(10 years ago)
10.0.2105 Aug 2015
(10 years ago)
10.0.2017 Jun 2015
(11 years ago)
10.0.1908 May 2015
(11 years ago)
10.0.1806 May 2015
(11 years ago)
10.0.1725 Feb 2015
(11 years ago)
10.0.1625 Jan 2015
(11 years ago)
10.0.1521 Nov 2014
(11 years ago)
10.0.1424 Sep 2014
(11 years ago)
10.0.1308 Aug 2014
(11 years ago)
10.0.1212 Jun 2014
(12 years ago)
10.0.1110 May 2014
(12 years ago)
10.0.1029 Mar 2014
(12 years ago)
10.0.908 Mar 2014
(12 years ago)
10.0.806 Feb 2014
(12 years ago)
10.0.723 Dec 2013
(12 years ago)
10.0.614 Nov 2013
(12 years ago)
10.0.507 Nov 2013
(12 years ago)
10.0.415 Aug 2013
(12 years ago)
10.0.310 Jun 2013
(13 years ago)
10.0.222 Apr 2013
(13 years ago)
10.0.104 Feb 2013
(13 years ago)
10.0.011 Nov 2012
(13 years ago)