MariaDB Galera Cluster Features Introduction (Pros and cons)

Source: Internet
Author: User
Tags mysql in

First, MariaDB galera cluster Summary:
1. Brief description:
The MariaDB Galera Cluster is a system architecture that implements multi-master and real-time synchronization of data on the MySQL InnoDB storage engine, without the need for read and write separation at the business level, and the database read and write pressures can be distributed to each node in accordance with established rules. Fully compatible with MariaDB and MySQL in terms of data.
2. Features:
(1). Synchronous Replication Synchronous Replication
(2). Active-active multi-master topology Logic
(3). Can read and write data to any node in the cluster
(4). Automatic member control, fault nodes are automatically removed from the cluster
(5). Automatic node Join
(6). True parallel replication, based on row-level
(7). Direct client connection, native MySQL interface
(8). Each node contains a complete copy of the data
(9). Data synchronization in multiple databases is implemented by the Wsrep interface
3. Limitations
(1). The current replication only supports the InnoDB storage engine, and any tables written to other engines, including the mysql.* table, will not be copied, but the DDL statements will be copied, so the created user will be copied, but insert into mysql.user ... will not be copied.
(2). The delete operation does not support tables that do not have a primary key, and tables that do not have a primary key will be different in different node order if a SELECT ... LIMIT ... A different result set appears.
(3). In a multi-master environment Lock/unlock tables is not supported, as well as the lock function Get_lock (), Release_lock () ...
(4). The query log cannot be saved in the table. If the query log is turned on, it can only be saved to a file.
(5). The maximum transaction size allowed is defined by Wsrep_max_ws_rows and wsrep_max_ws_size. Any large operations will be rejected. such as a large load data operation.
(6). Because the cluster is optimistic concurrency control, the transaction commit may be aborted at that stage. If there are two transactions written to and committed to the same row in a different node in the cluster, the failed node is aborted. For cluster-level aborts, the cluster returns a deadlock error code (error:1213 sqlstate:40001 (Er_lock_deadlock)).
(7). XA transactions are not supported due to possible rollback on commit.
(8). The write throughput of the entire cluster is limited by the weakest node, and if one node becomes slow, the entire cluster will be slow. For stable high-performance requirements, all nodes should use unified hardware.
(9). Cluster nodes suggest a minimum of 3.
(10). If there is a problem with the DDL statement, the cluster will be destroyed.

MariaDB Galera Cluster Features Introduction (Pros and cons)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.