MySQL Group Replication

Kenny Gryp
Kenny GrypMySQL Product Manager at Oracle
 
MySQL Group Replication
 
 
 
 
 
 
 
 
Kenny Gryp (@gryp)
1 / 65
Table of Contents
1. Overview 5. Backups
2. Provisioning Nodes 6. Load Balancers
3. Configuration 7. Improvements
4. Monitoring
2 / 65
Apologies upfront. I was able to spend limited time researching
Group Replication, my knowledge is a lot more limited compared
to many MySQL (Group Replication) developers in this room. I
may have made wrong assumptions or discuss problems, missing
features which are likely known and on the roadmap to be
fixed/developed in reasonable time. Group Replication is a quite
new feature and only recently became GA. Hereby I give full
responsibility to the MySQL Developers to respond whenever I
made a wrong statement :-), but please keep in mind that my talk is
only 25 minutes long. Even though MySQL Group Replication is
marked GA, it is still a new feature and database software adoption
usually takes a long time, bugs mentioned (some of which are not
verified yet) in these slides are not here to try to tell you the feature
is not good, I believe it is my duty as member of the community to
provide feedback and getting the opportunity to talk in this room
with a lot of Oracle employees clearly demonstrates this is their
desire as well, even though it does scare me quite a lot! This talk
describes the status of Group Replication on 31/01/2017.
3 / 65
MySQL Group Replication
Overview
4 / 65
MySQL Asynchronous Replication
5 / 65
MySQL Group Replication
6 / 65
Quick Overview
Writes in entire Group Replication executed in
'Global Total Order'
Majority consensus (Paxos Mencius)
Writes will be received/accepted by majority of the nodes
No guarantee all nodes have received a trx before
application gets OK back
Optimistic Locking: Conflict Detection after replicating trx:
'Certification'
First Committer Wins
Every node has all data, cluster is 'as fast as slowest node'.
Nodes can join/leave cluster
7 / 65
Properties
No concept of master/slave, only 'members'
Durability:
No data loss, when failure of nodes happen. Does not accept
writes if there is no Quorum.
Active:Active Master:
All nodes can be configured to accept writes at same time *
No (time consuming) failover is necessary, every member can
become a writer member at any time
Added latency to every transaction COMMIT.
8 / 65
MySQL InnoDB Cluster
9 / 65
MySQL InnoDB Cluster
10 / 65
MySQL Group Replication
Main focus: Design & Usability
Performance & Stability was not yet analyzed
11 / 65
Use Cases for Group Replication
Environments with strict durability requirements
(no data loss if master member is lost)
Write to multiple nodes
('scalability' by splitting write/read workloads)
Improve failover time
...
12 / 65
MySQL Group Replication
Provisioning Nodes
13 / 65
GTID
Please note that Group Replication uses GTID
14 / 65
GTID
Please note that Group Replication uses GTID
Keep into Account:
Creating a cluster and provisioning nodes requires 'compatible'
GTID-sets
Errant Transactions!
15 / 65
Errant Transactions
Ensure there are no errant transactions before starting group
replication:
[ERROR] Plugin group_replication reported:
'This member has more executed transactions than those present
in the group.
Local transactions: 74dc6ab2-e1cc-11e6-92aa-08002789cd2e:1
>
Group transactions: 72149827-e1cc-11e6-9daf-08002789cd2e:1,
da7aba5e-dead-da7a-ba55-da7aba5e57ab:1-5'
[ERROR] Plugin group_replication reported:
'The member contains transactions not present in the group.
The member will now exit the group.'
[Note] Plugin group_replication reported:
'To force this member into the group you can use
the group_replication_allow_local_disjoint_gtids_join option'
16 / 65
Best Practice
Please never use
group_replication_allow_local_disjoint_gtids_join
once you use it, you always have to keep it on.
they might have been writes to the individual node (GR not
active)
data consistency/split brain/data loss/...
#84728: GR failure at start still starts MySQL
#84733: not possible to start with super_read_only=1
17 / 65
Starting Cluster
First Choose the right node to bootstrap:
mysql> select @@global.gtid_executedG
************************** 1. row ***************************
@@global.gtid_executed: 72149827-e1cc-11e6-9daf-08002789cd2e:1,
740e1fd2-e1cc-11e6-a8ec-08002789cd2e:1-2,
74dc6ab2-e1cc-11e6-92aa-08002789cd2e:1-2,
da7aba5e-dead-da7a-ba55-da7aba5e57ab:1-399
1 row in set (0.00 sec)
ensure compatible GTID sets or forget about it!
choose node with all GTIDs
18 / 65
Cluster Membership Operations
Start a new cluster:
SET GLOBAL group_replication_bootstrap_group=on;
START GROUP_REPLICATION;
SET GLOBAL group_replication_bootstrap_group=off;
19 / 65
Cluster Membership Operations
Start a new cluster:
SET GLOBAL group_replication_bootstrap_group=on;
START GROUP_REPLICATION;
SET GLOBAL group_replication_bootstrap_group=off;
Restore (GTID-enabled) Backup
SET GLOBAL group_replication_group_seeds='node1,node2,node3';
START GROUP_REPLICATION;
#84674: unresolved hostnames block GR from starting
20 / 65
MySQL Group Replication
Configuration
21 / 65
Configuration Requirements
[mysqld]
log-bin
binlog-format=row
binlog-checksum=NONE
gtid-mode=ON
log-slave-updates
master-info-repository=TABLE
relay-log-info-repository=TABLE
transaction-write-set-extraction=XXHASH64
Group Replication Configuration:
group_replication_group_name="da7aba5e-dead-da7a-ba55-da7aba5e57ab"
group_replication_local_address= "gr-2:24901"
group_replication_group_seeds= "gr-1:24901,gr-2:24901,gr-3:24901"
22 / 65
MySQL InnoDB Cluster
No Security/Authentication is described in these slides
Possible to create a cluster in the MySQL Shell w. AdminAPI
Also performs configuration checks
23 / 65
Other Requirements/Limitations
Required:
InnoDB Required
PK on every table
24 / 65
Other Requirements/Limitations
Required:
InnoDB Required
PK on every table
Not supported:
Transaction Savepoints
#84799: mysqldump --single-transaction uses
savepoints, does not work with GR
In multi-writer/active:active
Concurrent DDL vs DML/DDL operations
25 / 65
Oracle's (Valid) Recommendations
Only use
group_replication_single_primary_mode=ON
write to a single node only
Not recommended for WAN
(Probably because of Majority Consensus in Paxos Mencius)
Requires uneven amount of nodes for proper Quorum
26 / 65
My Recommendations - my.cnf
27 / 65
My Recommendations - my.cnf
Do not use loose- even though it is mentioned in the manual
#84631: installation documentation issues
28 / 65
My Recommendations - my.cnf
Do not use loose- even though it is mentioned in the manual
#84631: installation documentation issues
._allow_local_disjoint_gtids_join=OFF
29 / 65
My Recommendations - my.cnf
Do not use loose- even though it is mentioned in the manual
#84631: installation documentation issues
._allow_local_disjoint_gtids_join=OFF
Single writer mode?
group_replication_auto_increment_increment=7
default is too high. Set to 1.
30 / 65
My Recommendations - my.cnf
Do not use loose- even though it is mentioned in the manual
#84631: installation documentation issues
._allow_local_disjoint_gtids_join=OFF
Single writer mode?
group_replication_auto_increment_increment=7
default is too high. Set to 1.
group_replication_bootstrap_group=OFF
31 / 65
My Recommendations - my.cnf
Do not use loose- even though it is mentioned in the manual
#84631: installation documentation issues
._allow_local_disjoint_gtids_join=OFF
Single writer mode?
group_replication_auto_increment_increment=7
default is too high. Set to 1.
group_replication_bootstrap_group=OFF
group_replication_start_on_boot=ON
#84728: GR failure at start still starts MySQL 32 / 65
My Recommendations
33 / 65
My Recommendations
Ensure all FQDN hostnames are resolvable.
#84674: unresolved hostnames block GR from starting
@@global.hostname is used by other
members
34 / 65
My Recommendations
Ensure all FQDN hostnames are resolvable.
#84674: unresolved hostnames block GR from starting
@@global.hostname is used by other
members
Dangerous to issue:
SET GLOBAL read_only=OFF;
SET GLOBAL super_read_only=OFF;
STOP GROUP_REPLICATION;
#84795: STOP GROUP_REPLICATION sets
super_read_only=off
35 / 65
My Failed Recommendation
In an attempt to prevent split brain and because of:
#84728: GR failure at start still starts MySQL
I tried to enforce super_read_only=1 at boot, but that
failed too:
#84733: not possible to start with super_read_only=1
I did not find a way to prevent a MySQL node from starting as a
individual r/w MySQL server when Group Replication failed to
start.
36 / 65
MySQL Group Replication
Monitoring
(Profiling, Trending, Alerting, Status, Troubleshooting)
37 / 65
Performance Schema
SELECT TABLE_NAME FROM information_schema.TABLES
WHERE TABLE_SCHEMA='performance_schema'
AND TABLE_NAME LIKE '%replication%';
+-------------------------------------------+
| TABLE_NAME |
+-------------------------------------------+
| replication_applier_configuration |
| replication_applier_status |
| replication_applier_status_by_coordinator |
| replication_applier_status_by_worker |
| replication_connection_configuration |
| replication_connection_status |
| replication_group_member_stats |
| replication_group_members |
+-------------------------------------------+
2 replication appliers:
group_replication_applier <- group replication
38 / 65
Trending - SHOW GLOBAL
STATUS
Limited Status Information (which are usually easy to gather):
mysql> show global status like '%group%';
+----------------------------------+--------------------------------------+
| Variable_name | Value |
+----------------------------------+--------------------------------------+
| Com_group_replication_start | 0 |
| Com_group_replication_stop | 0 |
| group_replication_primary_member | 72149827-e1cc-11e6-9daf-08002789cd2e |
+----------------------------------+--------------------------------------+
39 / 65
Trending - PFS
mysql> select * from replication_group_member_statsG
*************************** 1. row ***************************
CHANNEL_NAME: group_replication_applier
VIEW_ID: 14860449946972589:2
MEMBER_ID: 74dc6ab2-e1cc-11e6-92aa-08002789cd2e
COUNT_TRANSACTIONS_IN_QUEUE: 0 # Certification queue
COUNT_TRANSACTIONS_CHECKED: 4
COUNT_CONFLICTS_DETECTED: 0
COUNT_TRANSACTIONS_ROWS_VALIDATING: 0
TRANSACTIONS_COMMITTED_ALL_MEMBERS:
72149827-e1cc-11e6-9daf-08002789cd2e:1,
740e1fd2-e1cc-11e6-a8ec-08002789cd2e:1-2,
74dc6ab2-e1cc-11e6-92aa-08002789cd2e:1-2,
da7aba5e-dead-da7a-ba55-da7aba5e57ab:1-444:1000041-1000503:2000041-
LAST_CONFLICT_FREE_TRANSACTION:
da7aba5e-dead-da7a-ba55-da7aba5e57ab:444
1 row in set (0.00 sec)
40 / 65
Group Replication Status
mysql> select * from replication_connection_statusG
*************************** 1. row ***************************
CHANNEL_NAME: group_replication_applier
GROUP_NAME: da7aba5e-dead-da7a-ba55-da7aba5e57ab
SOURCE_UUID: da7aba5e-dead-da7a-ba55-da7aba5e57ab
THREAD_ID: NULL
SERVICE_STATE: ON
COUNT_RECEIVED_HEARTBEATS: 0
LAST_HEARTBEAT_TIMESTAMP: 0000-00-00 00:00:00
RECEIVED_TRANSACTION_SET:
72149827-e1cc-11e6-9daf-08002789cd2e:1,
740e1fd2-e1cc-11e6-a8ec-08002789cd2e:1-2,
74dc6ab2-e1cc-11e6-92aa-08002789cd2e:1-2,
da7aba5e-dead-da7a-ba55-da7aba5e57ab:1-444:1000041-1000503:2000041-2000648
LAST_ERROR_NUMBER: 0
LAST_ERROR_MESSAGE:
LAST_ERROR_TIMESTAMP: 0000-00-00 00:00:00
41 / 65
Group Replication Members
mysql> select * from replication_group_members;
+--------------------------------------+------+------+--------+
| ID | HOST | PORT | STATE |
+--------------------------------------+------+------+--------+
| 72149827-e1cc-11e6-9daf-08002789cd2e | gr-1 | 3306 | ONLINE |
| 74dc6ab2-e1cc-11e6-92aa-08002789cd2e | gr-3 | 3306 | ONLINE |
+--------------------------------------+------+------+--------+
2 rows in set (0.00 sec)
# slightly modified output
#84796: GR Member status is wrong
42 / 65
Group Replication Read or Write.
mysql> select @@global.super_read_only;
+--------------------------+
| @@global.super_read_only |
+--------------------------+
| 1 |
+--------------------------+
1 row in set (0.05 sec)
43 / 65
Group Replication Lag
SELECT sys.gtid_count(
GTID_SUBTRACT(
(
SELECT
Received_transaction_set
FROM performance_schema.replication_connection_status
WHERE
Channel_name = 'group_replication_applier'
),
(SELECT
@@global.GTID_EXECUTED)
)
)
)
Thanks to @lefred:
https://github.com/lefred/mysql_gr_routing_check/
44 / 65
Commands
mysql> SHOW SLAVE STATUS FOR CHANNEL 'group_replication_recovery'G
mysql> SHOW SLAVE STATUS FOR CHANNEL 'group_replication_applier'G
ERROR 3139 (HY000): SHOW SLAVE STATUS cannot be performed on channel 'group_re
45 / 65
Member State Changes
Can use improvements:
#84796: GR Member status is wrong
#84798: Group Replication can use some verbosity in the error
log
46 / 65
Multi Node Conflicts
Optimistic Locking
First committer wins
#84730: ability to troubleshoot transaction rollbacks
ERROR 3101 (HY000) at line 1: Plugin instructed the server
to rollback the current transaction.
47 / 65
MySQL Group Replication
Backups
48 / 65
Backups
It's just InnoDB, use your favorite GTID supported backup tool:
Percona XtraBackup
MySQL Enterprise Backup
mysqldump
mysqlpump
mydumper
but...
49 / 65
Backups
It's just InnoDB, use your favorite GTID supported backup tool:
Percona XtraBackup
MySQL Enterprise Backup
mysqldump
mysqlpump
mydumper
but...
#84799: mysqldump --single-transaction uses savepoints, does
not work with GR
mydumper --use-savepoints is also affected
50 / 65
MySQL Group Replication
Load Balancers
51 / 65
MySQL Router (Beta)
MySQL Router is part of MySQL InnoDB Cluster
52 / 65
MySQL Router (Beta)
MySQL Router is part of MySQL InnoDB Cluster
I briefly evaluated, but quickly ran into serious problems:
missing a lot of features
pretty unknown in the community
...:
#83237: mysqlrouter connects to wrong metadata server (a
partitioned node)
Visibility:
#83236: How to see mysqlrouter membership status?
53 / 65
MySQL Router (Beta)
MySQL Router is part of MySQL InnoDB Cluster
I briefly evaluated, but quickly ran into serious problems:
missing a lot of features
pretty unknown in the community
...:
#83237: mysqlrouter connects to wrong metadata server (a
partitioned node)
Visibility:
#83236: How to see mysqlrouter membership status?
I might consider to re-evaluate, but first ^^
54 / 65
ProxySQL
Really Open Source!
Becoming very popular
Example Implementation http://lefred.be/content/ha-with-
mysql-group-replication-and-proxysql/
Careful: #2: using multiple hostgroups/schedulers with
proxysql_groupreplication_checker.sh can
cause unwanted state changes
55 / 65
MySQL Group Replication
Improvements
56 / 65
#84784 - Nodes Do Not Reconnect
Nodes do not reconnect to the group replication once they got
disconnected, causing nodes to drop from the cluster and can
lead to losing the whole cluster availability
57 / 65
Improvements
58 / 65
Improvements
Reduce impact on applications:
#84731: mysql client connections get stuck during GR start
59 / 65
Improvements
Reduce impact on applications:
#84731: mysql client connections get stuck during GR start
Partition Tolerance issues, split brain cannot be prevented:
#84727: partitioned nodes still accept writes: queries hang
#84728: GR failure at start still starts MySQL
#84729: block reads on partitioned nodes *
#84733: not possible to start with super_read_only=1
#84784: Nodes Do Not Reconnect
#84795: STOP GROUP_REPLICATION sets
super_read_only=off
60 / 65
Improvements
Stability:
#84785: Prevent Large Transactions in Group Replication
#84792: Member using 100% CPU in idle cluster
#84796: GR Member status is wrong
61 / 65
Improvements
Stability:
#84785: Prevent Large Transactions in Group Replication
#84792: Member using 100% CPU in idle cluster
#84796: GR Member status is wrong
Usability:
#84674: unresolved hostnames block GR from starting
#84794: cannot kill query that is stuck inside GR
#84799: mysqldump --single-transaction uses
savepoints, does not work with GR
#84798: Group Replication can use some
verbosity in the error log
62 / 65
For Every Bug Fixed: 1 Beer
63 / 65
MySQL Group Replication
Summary
64 / 65
Summary
Use Cases for Group Replication
Environments with strict durability requirements
Ensure split-brain can be completely avoided
Write to multiple nodes
('scalability' by splitting write/read workloads)
Not recommended (yet)
Improve failover time
Reducing impact on applications can be improved
...
65 / 65
1 of 65

Recommended

MySQL Database Architectures - MySQL InnoDB ClusterSet 2021-11 by
MySQL Database Architectures - MySQL InnoDB ClusterSet 2021-11MySQL Database Architectures - MySQL InnoDB ClusterSet 2021-11
MySQL Database Architectures - MySQL InnoDB ClusterSet 2021-11Kenny Gryp
660 views55 slides
MySQL InnoDB Cluster - Group Replication by
MySQL InnoDB Cluster - Group ReplicationMySQL InnoDB Cluster - Group Replication
MySQL InnoDB Cluster - Group ReplicationFrederic Descamps
2.5K views126 slides
MySQL Group Replication by
MySQL Group ReplicationMySQL Group Replication
MySQL Group ReplicationUlf Wendel
33.1K views92 slides
DataOpsbarcelona 2019: Deep dive into MySQL Group Replication... the magic e... by
DataOpsbarcelona 2019:  Deep dive into MySQL Group Replication... the magic e...DataOpsbarcelona 2019:  Deep dive into MySQL Group Replication... the magic e...
DataOpsbarcelona 2019: Deep dive into MySQL Group Replication... the magic e...Frederic Descamps
880 views191 slides
MySQL Database Architectures - InnoDB ReplicaSet & Cluster by
MySQL Database Architectures - InnoDB ReplicaSet & ClusterMySQL Database Architectures - InnoDB ReplicaSet & Cluster
MySQL Database Architectures - InnoDB ReplicaSet & ClusterKenny Gryp
2.6K views62 slides
High Availability in MySQL 8 using InnoDB Cluster by
High Availability in MySQL 8 using InnoDB ClusterHigh Availability in MySQL 8 using InnoDB Cluster
High Availability in MySQL 8 using InnoDB ClusterSven Sandberg
614 views276 slides

More Related Content

What's hot

MySQL Shell for DBAs by
MySQL Shell for DBAsMySQL Shell for DBAs
MySQL Shell for DBAsFrederic Descamps
365 views89 slides
MySQL Advanced Administrator 2021 - 네오클로바 by
MySQL Advanced Administrator 2021 - 네오클로바MySQL Advanced Administrator 2021 - 네오클로바
MySQL Advanced Administrator 2021 - 네오클로바NeoClova
583 views109 slides
MySQL InnoDB Cluster and Group Replication in a nutshell hands-on tutorial by
MySQL InnoDB Cluster and Group Replication in a nutshell  hands-on tutorialMySQL InnoDB Cluster and Group Replication in a nutshell  hands-on tutorial
MySQL InnoDB Cluster and Group Replication in a nutshell hands-on tutorialFrederic Descamps
1.4K views145 slides
MySQL Performance Schema in Action: the Complete Tutorial by
MySQL Performance Schema in Action: the Complete TutorialMySQL Performance Schema in Action: the Complete Tutorial
MySQL Performance Schema in Action: the Complete TutorialSveta Smirnova
2.1K views174 slides
The Full MySQL and MariaDB Parallel Replication Tutorial by
The Full MySQL and MariaDB Parallel Replication TutorialThe Full MySQL and MariaDB Parallel Replication Tutorial
The Full MySQL and MariaDB Parallel Replication TutorialJean-François Gagné
3.3K views113 slides
MySQL Group Replication - Ready For Production? (2018-04) by
MySQL Group Replication - Ready For Production? (2018-04)MySQL Group Replication - Ready For Production? (2018-04)
MySQL Group Replication - Ready For Production? (2018-04)Kenny Gryp
1.7K views72 slides

What's hot(20)

MySQL Advanced Administrator 2021 - 네오클로바 by NeoClova
MySQL Advanced Administrator 2021 - 네오클로바MySQL Advanced Administrator 2021 - 네오클로바
MySQL Advanced Administrator 2021 - 네오클로바
NeoClova583 views
MySQL InnoDB Cluster and Group Replication in a nutshell hands-on tutorial by Frederic Descamps
MySQL InnoDB Cluster and Group Replication in a nutshell  hands-on tutorialMySQL InnoDB Cluster and Group Replication in a nutshell  hands-on tutorial
MySQL InnoDB Cluster and Group Replication in a nutshell hands-on tutorial
Frederic Descamps1.4K views
MySQL Performance Schema in Action: the Complete Tutorial by Sveta Smirnova
MySQL Performance Schema in Action: the Complete TutorialMySQL Performance Schema in Action: the Complete Tutorial
MySQL Performance Schema in Action: the Complete Tutorial
Sveta Smirnova2.1K views
The Full MySQL and MariaDB Parallel Replication Tutorial by Jean-François Gagné
The Full MySQL and MariaDB Parallel Replication TutorialThe Full MySQL and MariaDB Parallel Replication Tutorial
The Full MySQL and MariaDB Parallel Replication Tutorial
MySQL Group Replication - Ready For Production? (2018-04) by Kenny Gryp
MySQL Group Replication - Ready For Production? (2018-04)MySQL Group Replication - Ready For Production? (2018-04)
MySQL Group Replication - Ready For Production? (2018-04)
Kenny Gryp1.7K views
MySQL Database Architectures - High Availability and Disaster Recovery Solution by Miguel Araújo
MySQL Database Architectures - High Availability and Disaster Recovery SolutionMySQL Database Architectures - High Availability and Disaster Recovery Solution
MySQL Database Architectures - High Availability and Disaster Recovery Solution
Miguel Araújo110 views
MySQL Group Replication: Handling Network Glitches - Best Practices by Frederic Descamps
MySQL Group Replication: Handling Network Glitches - Best PracticesMySQL Group Replication: Handling Network Glitches - Best Practices
MySQL Group Replication: Handling Network Glitches - Best Practices
Frederic Descamps341 views
MySQL InnoDB Cluster and NDB Cluster by Mario Beck
MySQL InnoDB Cluster and NDB ClusterMySQL InnoDB Cluster and NDB Cluster
MySQL InnoDB Cluster and NDB Cluster
Mario Beck3.8K views
Disaster Recovery with MySQL InnoDB ClusterSet - What is it and how do I use it? by Miguel Araújo
Disaster Recovery with MySQL InnoDB ClusterSet - What is it and how do I use it?Disaster Recovery with MySQL InnoDB ClusterSet - What is it and how do I use it?
Disaster Recovery with MySQL InnoDB ClusterSet - What is it and how do I use it?
Miguel Araújo293 views
MySQL High Availability with Group Replication by Nuno Carvalho
MySQL High Availability with Group ReplicationMySQL High Availability with Group Replication
MySQL High Availability with Group Replication
Nuno Carvalho3.1K views
ProxySQL for MySQL by Mydbops
ProxySQL for MySQLProxySQL for MySQL
ProxySQL for MySQL
Mydbops4.3K views
Open Source 101 2022 - MySQL Indexes and Histograms by Frederic Descamps
Open Source 101 2022 - MySQL Indexes and HistogramsOpen Source 101 2022 - MySQL Indexes and Histograms
Open Source 101 2022 - MySQL Indexes and Histograms
Frederic Descamps358 views
MySQL InnoDB Cluster - Advanced Configuration & Operations by Frederic Descamps
MySQL InnoDB Cluster - Advanced Configuration & OperationsMySQL InnoDB Cluster - Advanced Configuration & Operations
MySQL InnoDB Cluster - Advanced Configuration & Operations
Frederic Descamps730 views
MySQL InnoDB Cluster - A complete High Availability solution for MySQL by Olivier DASINI
MySQL InnoDB Cluster - A complete High Availability solution for MySQLMySQL InnoDB Cluster - A complete High Availability solution for MySQL
MySQL InnoDB Cluster - A complete High Availability solution for MySQL
Olivier DASINI7.4K views
MySQL Performance Schema in Action by Sveta Smirnova
MySQL Performance Schema in ActionMySQL Performance Schema in Action
MySQL Performance Schema in Action
Sveta Smirnova719 views
Almost Perfect Service Discovery and Failover with ProxySQL and Orchestrator by Jean-François Gagné
Almost Perfect Service Discovery and Failover with ProxySQL and OrchestratorAlmost Perfect Service Discovery and Failover with ProxySQL and Orchestrator
Almost Perfect Service Discovery and Failover with ProxySQL and Orchestrator
MySQL Shell - The Best MySQL DBA Tool by Miguel Araújo
MySQL Shell - The Best MySQL DBA ToolMySQL Shell - The Best MySQL DBA Tool
MySQL Shell - The Best MySQL DBA Tool
Miguel Araújo500 views
How to Analyze and Tune MySQL Queries for Better Performance by oysteing
How to Analyze and Tune MySQL Queries for Better PerformanceHow to Analyze and Tune MySQL Queries for Better Performance
How to Analyze and Tune MySQL Queries for Better Performance
oysteing1.7K views

Viewers also liked

Extensible Data Modeling by
Extensible Data ModelingExtensible Data Modeling
Extensible Data ModelingKarwin Software Solutions LLC
41.3K views73 slides
Percona XtraDB Cluster vs Galera Cluster vs MySQL Group Replication by
Percona XtraDB Cluster vs Galera Cluster vs MySQL Group ReplicationPercona XtraDB Cluster vs Galera Cluster vs MySQL Group Replication
Percona XtraDB Cluster vs Galera Cluster vs MySQL Group ReplicationKenny Gryp
18.4K views60 slides
MySQL Replication Performance Tuning for Fun and Profit! by
MySQL Replication Performance Tuning for Fun and Profit!MySQL Replication Performance Tuning for Fun and Profit!
MySQL Replication Performance Tuning for Fun and Profit!Vitor Oliveira
2.9K views63 slides
淘宝数据库架构演进历程 by
淘宝数据库架构演进历程淘宝数据库架构演进历程
淘宝数据库架构演进历程zhaolinjnu
5K views42 slides
Mysql high availability and scalability by
Mysql high availability and scalabilityMysql high availability and scalability
Mysql high availability and scalabilityyin gong
1.8K views36 slides
Group Replication: A Journey to the Group Communication Core by
Group Replication: A Journey to the Group Communication CoreGroup Replication: A Journey to the Group Communication Core
Group Replication: A Journey to the Group Communication CoreAlfranio Júnior
2.3K views38 slides

Viewers also liked(20)

Percona XtraDB Cluster vs Galera Cluster vs MySQL Group Replication by Kenny Gryp
Percona XtraDB Cluster vs Galera Cluster vs MySQL Group ReplicationPercona XtraDB Cluster vs Galera Cluster vs MySQL Group Replication
Percona XtraDB Cluster vs Galera Cluster vs MySQL Group Replication
Kenny Gryp18.4K views
MySQL Replication Performance Tuning for Fun and Profit! by Vitor Oliveira
MySQL Replication Performance Tuning for Fun and Profit!MySQL Replication Performance Tuning for Fun and Profit!
MySQL Replication Performance Tuning for Fun and Profit!
Vitor Oliveira2.9K views
淘宝数据库架构演进历程 by zhaolinjnu
淘宝数据库架构演进历程淘宝数据库架构演进历程
淘宝数据库架构演进历程
zhaolinjnu5K views
Mysql high availability and scalability by yin gong
Mysql high availability and scalabilityMysql high availability and scalability
Mysql high availability and scalability
yin gong1.8K views
Group Replication: A Journey to the Group Communication Core by Alfranio Júnior
Group Replication: A Journey to the Group Communication CoreGroup Replication: A Journey to the Group Communication Core
Group Replication: A Journey to the Group Communication Core
Alfranio Júnior2.3K views
MySQL Best Practices - OTN LAD Tour by Ronald Bradford
MySQL Best Practices - OTN LAD TourMySQL Best Practices - OTN LAD Tour
MySQL Best Practices - OTN LAD Tour
Ronald Bradford9.5K views
Мониторинг и отладка MySQL: максимум информации при минимальных потерях by Sveta Smirnova
Мониторинг и отладка MySQL: максимум информации при минимальных потеряхМониторинг и отладка MySQL: максимум информации при минимальных потерях
Мониторинг и отладка MySQL: максимум информации при минимальных потерях
Sveta Smirnova871 views
Using Apache Spark and MySQL for Data Analysis by Sveta Smirnova
Using Apache Spark and MySQL for Data AnalysisUsing Apache Spark and MySQL for Data Analysis
Using Apache Spark and MySQL for Data Analysis
Sveta Smirnova2.8K views
MySQL High Availability and Disaster Recovery with Continuent, a VMware company by Continuent
MySQL High Availability and Disaster Recovery with Continuent, a VMware companyMySQL High Availability and Disaster Recovery with Continuent, a VMware company
MySQL High Availability and Disaster Recovery with Continuent, a VMware company
Continuent1.8K views
MySQL High Availability Solutions by Lenz Grimmer
MySQL High Availability SolutionsMySQL High Availability Solutions
MySQL High Availability Solutions
Lenz Grimmer7.2K views
MySQL InnoDB 源码实现分析(一) by frogd
MySQL InnoDB 源码实现分析(一)MySQL InnoDB 源码实现分析(一)
MySQL InnoDB 源码实现分析(一)
frogd7.6K views
MySQL Group Replication - HandsOn Tutorial by Kenny Gryp
MySQL Group Replication - HandsOn TutorialMySQL Group Replication - HandsOn Tutorial
MySQL Group Replication - HandsOn Tutorial
Kenny Gryp2.2K views
MySQL - checklist для новичка в Highload by Sveta Smirnova
MySQL - checklist для новичка в HighloadMySQL - checklist для новичка в Highload
MySQL - checklist для новичка в Highload
Sveta Smirnova8.2K views
MySQL Group Replication by Manish Kumar
MySQL Group ReplicationMySQL Group Replication
MySQL Group Replication
Manish Kumar956 views
MySQL Storage Engines - which do you use? TokuDB? MyRocks? InnoDB? by Sveta Smirnova
MySQL Storage Engines - which do you use? TokuDB? MyRocks? InnoDB?MySQL Storage Engines - which do you use? TokuDB? MyRocks? InnoDB?
MySQL Storage Engines - which do you use? TokuDB? MyRocks? InnoDB?
Sveta Smirnova1.9K views
Capturing, Analyzing and Optimizing MySQL by Ronald Bradford
Capturing, Analyzing and Optimizing MySQLCapturing, Analyzing and Optimizing MySQL
Capturing, Analyzing and Optimizing MySQL
Ronald Bradford5K views
Mastering InnoDB Diagnostics by guest8212a5
Mastering InnoDB DiagnosticsMastering InnoDB Diagnostics
Mastering InnoDB Diagnostics
guest8212a53.4K views

Similar to MySQL Group Replication

Upgrade to MySQL 5.6 without downtime by
Upgrade to MySQL 5.6 without downtimeUpgrade to MySQL 5.6 without downtime
Upgrade to MySQL 5.6 without downtimeOlivier DASINI
5.4K views40 slides
Meb Backup & Recovery Performance by
Meb Backup & Recovery PerformanceMeb Backup & Recovery Performance
Meb Backup & Recovery PerformanceKeith Hollman
897 views28 slides
MySQL 101 PHPTek 2017 by
MySQL 101 PHPTek 2017MySQL 101 PHPTek 2017
MySQL 101 PHPTek 2017Dave Stokes
551 views129 slides
Advanced Percona XtraDB Cluster in a nutshell... la suite by
Advanced Percona XtraDB Cluster in a nutshell... la suiteAdvanced Percona XtraDB Cluster in a nutshell... la suite
Advanced Percona XtraDB Cluster in a nutshell... la suiteKenny Gryp
3.4K views197 slides
MySQL Scalability and Reliability for Replicated Environment by
MySQL Scalability and Reliability for Replicated EnvironmentMySQL Scalability and Reliability for Replicated Environment
MySQL Scalability and Reliability for Replicated EnvironmentJean-François Gagné
877 views60 slides
MySQL NoSQL APIs by
MySQL NoSQL APIsMySQL NoSQL APIs
MySQL NoSQL APIsMorgan Tocker
1.4K views33 slides

Similar to MySQL Group Replication(20)

Upgrade to MySQL 5.6 without downtime by Olivier DASINI
Upgrade to MySQL 5.6 without downtimeUpgrade to MySQL 5.6 without downtime
Upgrade to MySQL 5.6 without downtime
Olivier DASINI5.4K views
Meb Backup & Recovery Performance by Keith Hollman
Meb Backup & Recovery PerformanceMeb Backup & Recovery Performance
Meb Backup & Recovery Performance
Keith Hollman897 views
MySQL 101 PHPTek 2017 by Dave Stokes
MySQL 101 PHPTek 2017MySQL 101 PHPTek 2017
MySQL 101 PHPTek 2017
Dave Stokes551 views
Advanced Percona XtraDB Cluster in a nutshell... la suite by Kenny Gryp
Advanced Percona XtraDB Cluster in a nutshell... la suiteAdvanced Percona XtraDB Cluster in a nutshell... la suite
Advanced Percona XtraDB Cluster in a nutshell... la suite
Kenny Gryp3.4K views
MySQL Scalability and Reliability for Replicated Environment by Jean-François Gagné
MySQL Scalability and Reliability for Replicated EnvironmentMySQL Scalability and Reliability for Replicated Environment
MySQL Scalability and Reliability for Replicated Environment
Reducing Risk When Upgrading MySQL by Kenny Gryp
Reducing Risk When Upgrading MySQLReducing Risk When Upgrading MySQL
Reducing Risk When Upgrading MySQL
Kenny Gryp2.2K views
PoC: Using a Group Communication System to improve MySQL Replication HA by Ulf Wendel
PoC: Using a Group Communication System to improve MySQL Replication HAPoC: Using a Group Communication System to improve MySQL Replication HA
PoC: Using a Group Communication System to improve MySQL Replication HA
Ulf Wendel6.1K views
MySQL Scalability and Reliability for Replicated Environment by Jean-François Gagné
MySQL Scalability and Reliability for Replicated EnvironmentMySQL Scalability and Reliability for Replicated Environment
MySQL Scalability and Reliability for Replicated Environment
Mysql 57-upcoming-changes by Morgan Tocker
Mysql 57-upcoming-changesMysql 57-upcoming-changes
Mysql 57-upcoming-changes
Morgan Tocker2.5K views
Multi Source Replication With MySQL 5.7 @ Verisure by Kenny Gryp
Multi Source Replication With MySQL 5.7 @ VerisureMulti Source Replication With MySQL 5.7 @ Verisure
Multi Source Replication With MySQL 5.7 @ Verisure
Kenny Gryp1.7K views
Memcachedb: The Complete Guide by elliando dias
Memcachedb: The Complete GuideMemcachedb: The Complete Guide
Memcachedb: The Complete Guide
elliando dias482 views
Mysql by Mindtree
Mysql Mysql
Mysql
Mindtree1.1K views
Percona XtraDB 集群文档 by YUCHENG HU
Percona XtraDB 集群文档Percona XtraDB 集群文档
Percona XtraDB 集群文档
YUCHENG HU744 views
Advanced percona xtra db cluster in a nutshell... la suite plsc2016 by Frederic Descamps
Advanced percona xtra db cluster in a nutshell... la suite plsc2016Advanced percona xtra db cluster in a nutshell... la suite plsc2016
Advanced percona xtra db cluster in a nutshell... la suite plsc2016
Frederic Descamps1.9K views
Caching and tuning fun for high scalability @ FrOSCon 2011 by Wim Godden
Caching and tuning fun for high scalability @ FrOSCon 2011Caching and tuning fun for high scalability @ FrOSCon 2011
Caching and tuning fun for high scalability @ FrOSCon 2011
Wim Godden1.8K views
MySQL InnoDB Cluster - New Features in 8.0 Releases - Best Practices by Kenny Gryp
MySQL InnoDB Cluster - New Features in 8.0 Releases - Best PracticesMySQL InnoDB Cluster - New Features in 8.0 Releases - Best Practices
MySQL InnoDB Cluster - New Features in 8.0 Releases - Best Practices
Kenny Gryp2.9K views

More from Kenny Gryp

MySQL Database Architectures - 2022-08 by
MySQL Database Architectures - 2022-08MySQL Database Architectures - 2022-08
MySQL Database Architectures - 2022-08Kenny Gryp
145 views56 slides
MySQL Operator for Kubernetes by
MySQL Operator for KubernetesMySQL Operator for Kubernetes
MySQL Operator for KubernetesKenny Gryp
594 views22 slides
MySQL Database Architectures - 2020-10 by
MySQL Database Architectures -  2020-10MySQL Database Architectures -  2020-10
MySQL Database Architectures - 2020-10Kenny Gryp
402 views62 slides
MySQL InnoDB Cluster / ReplicaSet - Tutorial by
MySQL InnoDB Cluster / ReplicaSet - TutorialMySQL InnoDB Cluster / ReplicaSet - Tutorial
MySQL InnoDB Cluster / ReplicaSet - TutorialKenny Gryp
676 views101 slides
MySQL Connectors 8.0.19 & DNS SRV by
MySQL Connectors 8.0.19 & DNS SRVMySQL Connectors 8.0.19 & DNS SRV
MySQL Connectors 8.0.19 & DNS SRVKenny Gryp
1.4K views26 slides
Online MySQL Backups with Percona XtraBackup by
Online MySQL Backups with Percona XtraBackupOnline MySQL Backups with Percona XtraBackup
Online MySQL Backups with Percona XtraBackupKenny Gryp
1.2K views42 slides

More from Kenny Gryp(8)

MySQL Database Architectures - 2022-08 by Kenny Gryp
MySQL Database Architectures - 2022-08MySQL Database Architectures - 2022-08
MySQL Database Architectures - 2022-08
Kenny Gryp145 views
MySQL Operator for Kubernetes by Kenny Gryp
MySQL Operator for KubernetesMySQL Operator for Kubernetes
MySQL Operator for Kubernetes
Kenny Gryp594 views
MySQL Database Architectures - 2020-10 by Kenny Gryp
MySQL Database Architectures -  2020-10MySQL Database Architectures -  2020-10
MySQL Database Architectures - 2020-10
Kenny Gryp402 views
MySQL InnoDB Cluster / ReplicaSet - Tutorial by Kenny Gryp
MySQL InnoDB Cluster / ReplicaSet - TutorialMySQL InnoDB Cluster / ReplicaSet - Tutorial
MySQL InnoDB Cluster / ReplicaSet - Tutorial
Kenny Gryp676 views
MySQL Connectors 8.0.19 & DNS SRV by Kenny Gryp
MySQL Connectors 8.0.19 & DNS SRVMySQL Connectors 8.0.19 & DNS SRV
MySQL Connectors 8.0.19 & DNS SRV
Kenny Gryp1.4K views
Online MySQL Backups with Percona XtraBackup by Kenny Gryp
Online MySQL Backups with Percona XtraBackupOnline MySQL Backups with Percona XtraBackup
Online MySQL Backups with Percona XtraBackup
Kenny Gryp1.2K views
Java MySQL Connector & Connection Pool Features & Optimization by Kenny Gryp
Java MySQL Connector & Connection Pool Features & OptimizationJava MySQL Connector & Connection Pool Features & Optimization
Java MySQL Connector & Connection Pool Features & Optimization
Kenny Gryp6.6K views
Percona XtraDB Cluster by Kenny Gryp
Percona XtraDB ClusterPercona XtraDB Cluster
Percona XtraDB Cluster
Kenny Gryp2.8K views

Recently uploaded

SAP Automation Using Bar Code and FIORI.pdf by
SAP Automation Using Bar Code and FIORI.pdfSAP Automation Using Bar Code and FIORI.pdf
SAP Automation Using Bar Code and FIORI.pdfVirendra Rai, PMP
25 views38 slides
Evolving the Network Automation Journey from Python to Platforms by
Evolving the Network Automation Journey from Python to PlatformsEvolving the Network Automation Journey from Python to Platforms
Evolving the Network Automation Journey from Python to PlatformsNetwork Automation Forum
17 views21 slides
Unit 1_Lecture 2_Physical Design of IoT.pdf by
Unit 1_Lecture 2_Physical Design of IoT.pdfUnit 1_Lecture 2_Physical Design of IoT.pdf
Unit 1_Lecture 2_Physical Design of IoT.pdfStephenTec
15 views36 slides
Info Session November 2023.pdf by
Info Session November 2023.pdfInfo Session November 2023.pdf
Info Session November 2023.pdfAleksandraKoprivica4
15 views15 slides
Scaling Knowledge Graph Architectures with AI by
Scaling Knowledge Graph Architectures with AIScaling Knowledge Graph Architectures with AI
Scaling Knowledge Graph Architectures with AIEnterprise Knowledge
50 views15 slides
TouchLog: Finger Micro Gesture Recognition Using Photo-Reflective Sensors by
TouchLog: Finger Micro Gesture Recognition  Using Photo-Reflective SensorsTouchLog: Finger Micro Gesture Recognition  Using Photo-Reflective Sensors
TouchLog: Finger Micro Gesture Recognition Using Photo-Reflective Sensorssugiuralab
23 views15 slides

Recently uploaded(20)

SAP Automation Using Bar Code and FIORI.pdf by Virendra Rai, PMP
SAP Automation Using Bar Code and FIORI.pdfSAP Automation Using Bar Code and FIORI.pdf
SAP Automation Using Bar Code and FIORI.pdf
Unit 1_Lecture 2_Physical Design of IoT.pdf by StephenTec
Unit 1_Lecture 2_Physical Design of IoT.pdfUnit 1_Lecture 2_Physical Design of IoT.pdf
Unit 1_Lecture 2_Physical Design of IoT.pdf
StephenTec15 views
TouchLog: Finger Micro Gesture Recognition Using Photo-Reflective Sensors by sugiuralab
TouchLog: Finger Micro Gesture Recognition  Using Photo-Reflective SensorsTouchLog: Finger Micro Gesture Recognition  Using Photo-Reflective Sensors
TouchLog: Finger Micro Gesture Recognition Using Photo-Reflective Sensors
sugiuralab23 views
Future of AR - Facebook Presentation by ssuserb54b561
Future of AR - Facebook PresentationFuture of AR - Facebook Presentation
Future of AR - Facebook Presentation
ssuserb54b56122 views
Piloting & Scaling Successfully With Microsoft Viva by Richard Harbridge
Piloting & Scaling Successfully With Microsoft VivaPiloting & Scaling Successfully With Microsoft Viva
Piloting & Scaling Successfully With Microsoft Viva
STKI Israeli Market Study 2023 corrected forecast 2023_24 v3.pdf by Dr. Jimmy Schwarzkopf
STKI Israeli Market Study 2023   corrected forecast 2023_24 v3.pdfSTKI Israeli Market Study 2023   corrected forecast 2023_24 v3.pdf
STKI Israeli Market Study 2023 corrected forecast 2023_24 v3.pdf
2024: A Travel Odyssey The Role of Generative AI in the Tourism Universe by Simone Puorto
2024: A Travel Odyssey The Role of Generative AI in the Tourism Universe2024: A Travel Odyssey The Role of Generative AI in the Tourism Universe
2024: A Travel Odyssey The Role of Generative AI in the Tourism Universe
Simone Puorto13 views

MySQL Group Replication

  • 2. Table of Contents 1. Overview 5. Backups 2. Provisioning Nodes 6. Load Balancers 3. Configuration 7. Improvements 4. Monitoring 2 / 65
  • 3. Apologies upfront. I was able to spend limited time researching Group Replication, my knowledge is a lot more limited compared to many MySQL (Group Replication) developers in this room. I may have made wrong assumptions or discuss problems, missing features which are likely known and on the roadmap to be fixed/developed in reasonable time. Group Replication is a quite new feature and only recently became GA. Hereby I give full responsibility to the MySQL Developers to respond whenever I made a wrong statement :-), but please keep in mind that my talk is only 25 minutes long. Even though MySQL Group Replication is marked GA, it is still a new feature and database software adoption usually takes a long time, bugs mentioned (some of which are not verified yet) in these slides are not here to try to tell you the feature is not good, I believe it is my duty as member of the community to provide feedback and getting the opportunity to talk in this room with a lot of Oracle employees clearly demonstrates this is their desire as well, even though it does scare me quite a lot! This talk describes the status of Group Replication on 31/01/2017. 3 / 65
  • 7. Quick Overview Writes in entire Group Replication executed in 'Global Total Order' Majority consensus (Paxos Mencius) Writes will be received/accepted by majority of the nodes No guarantee all nodes have received a trx before application gets OK back Optimistic Locking: Conflict Detection after replicating trx: 'Certification' First Committer Wins Every node has all data, cluster is 'as fast as slowest node'. Nodes can join/leave cluster 7 / 65
  • 8. Properties No concept of master/slave, only 'members' Durability: No data loss, when failure of nodes happen. Does not accept writes if there is no Quorum. Active:Active Master: All nodes can be configured to accept writes at same time * No (time consuming) failover is necessary, every member can become a writer member at any time Added latency to every transaction COMMIT. 8 / 65
  • 11. MySQL Group Replication Main focus: Design & Usability Performance & Stability was not yet analyzed 11 / 65
  • 12. Use Cases for Group Replication Environments with strict durability requirements (no data loss if master member is lost) Write to multiple nodes ('scalability' by splitting write/read workloads) Improve failover time ... 12 / 65
  • 14. GTID Please note that Group Replication uses GTID 14 / 65
  • 15. GTID Please note that Group Replication uses GTID Keep into Account: Creating a cluster and provisioning nodes requires 'compatible' GTID-sets Errant Transactions! 15 / 65
  • 16. Errant Transactions Ensure there are no errant transactions before starting group replication: [ERROR] Plugin group_replication reported: 'This member has more executed transactions than those present in the group. Local transactions: 74dc6ab2-e1cc-11e6-92aa-08002789cd2e:1 > Group transactions: 72149827-e1cc-11e6-9daf-08002789cd2e:1, da7aba5e-dead-da7a-ba55-da7aba5e57ab:1-5' [ERROR] Plugin group_replication reported: 'The member contains transactions not present in the group. The member will now exit the group.' [Note] Plugin group_replication reported: 'To force this member into the group you can use the group_replication_allow_local_disjoint_gtids_join option' 16 / 65
  • 17. Best Practice Please never use group_replication_allow_local_disjoint_gtids_join once you use it, you always have to keep it on. they might have been writes to the individual node (GR not active) data consistency/split brain/data loss/... #84728: GR failure at start still starts MySQL #84733: not possible to start with super_read_only=1 17 / 65
  • 18. Starting Cluster First Choose the right node to bootstrap: mysql> select @@global.gtid_executedG ************************** 1. row *************************** @@global.gtid_executed: 72149827-e1cc-11e6-9daf-08002789cd2e:1, 740e1fd2-e1cc-11e6-a8ec-08002789cd2e:1-2, 74dc6ab2-e1cc-11e6-92aa-08002789cd2e:1-2, da7aba5e-dead-da7a-ba55-da7aba5e57ab:1-399 1 row in set (0.00 sec) ensure compatible GTID sets or forget about it! choose node with all GTIDs 18 / 65
  • 19. Cluster Membership Operations Start a new cluster: SET GLOBAL group_replication_bootstrap_group=on; START GROUP_REPLICATION; SET GLOBAL group_replication_bootstrap_group=off; 19 / 65
  • 20. Cluster Membership Operations Start a new cluster: SET GLOBAL group_replication_bootstrap_group=on; START GROUP_REPLICATION; SET GLOBAL group_replication_bootstrap_group=off; Restore (GTID-enabled) Backup SET GLOBAL group_replication_group_seeds='node1,node2,node3'; START GROUP_REPLICATION; #84674: unresolved hostnames block GR from starting 20 / 65
  • 22. Configuration Requirements [mysqld] log-bin binlog-format=row binlog-checksum=NONE gtid-mode=ON log-slave-updates master-info-repository=TABLE relay-log-info-repository=TABLE transaction-write-set-extraction=XXHASH64 Group Replication Configuration: group_replication_group_name="da7aba5e-dead-da7a-ba55-da7aba5e57ab" group_replication_local_address= "gr-2:24901" group_replication_group_seeds= "gr-1:24901,gr-2:24901,gr-3:24901" 22 / 65
  • 23. MySQL InnoDB Cluster No Security/Authentication is described in these slides Possible to create a cluster in the MySQL Shell w. AdminAPI Also performs configuration checks 23 / 65
  • 25. Other Requirements/Limitations Required: InnoDB Required PK on every table Not supported: Transaction Savepoints #84799: mysqldump --single-transaction uses savepoints, does not work with GR In multi-writer/active:active Concurrent DDL vs DML/DDL operations 25 / 65
  • 26. Oracle's (Valid) Recommendations Only use group_replication_single_primary_mode=ON write to a single node only Not recommended for WAN (Probably because of Majority Consensus in Paxos Mencius) Requires uneven amount of nodes for proper Quorum 26 / 65
  • 27. My Recommendations - my.cnf 27 / 65
  • 28. My Recommendations - my.cnf Do not use loose- even though it is mentioned in the manual #84631: installation documentation issues 28 / 65
  • 29. My Recommendations - my.cnf Do not use loose- even though it is mentioned in the manual #84631: installation documentation issues ._allow_local_disjoint_gtids_join=OFF 29 / 65
  • 30. My Recommendations - my.cnf Do not use loose- even though it is mentioned in the manual #84631: installation documentation issues ._allow_local_disjoint_gtids_join=OFF Single writer mode? group_replication_auto_increment_increment=7 default is too high. Set to 1. 30 / 65
  • 31. My Recommendations - my.cnf Do not use loose- even though it is mentioned in the manual #84631: installation documentation issues ._allow_local_disjoint_gtids_join=OFF Single writer mode? group_replication_auto_increment_increment=7 default is too high. Set to 1. group_replication_bootstrap_group=OFF 31 / 65
  • 32. My Recommendations - my.cnf Do not use loose- even though it is mentioned in the manual #84631: installation documentation issues ._allow_local_disjoint_gtids_join=OFF Single writer mode? group_replication_auto_increment_increment=7 default is too high. Set to 1. group_replication_bootstrap_group=OFF group_replication_start_on_boot=ON #84728: GR failure at start still starts MySQL 32 / 65
  • 34. My Recommendations Ensure all FQDN hostnames are resolvable. #84674: unresolved hostnames block GR from starting @@global.hostname is used by other members 34 / 65
  • 35. My Recommendations Ensure all FQDN hostnames are resolvable. #84674: unresolved hostnames block GR from starting @@global.hostname is used by other members Dangerous to issue: SET GLOBAL read_only=OFF; SET GLOBAL super_read_only=OFF; STOP GROUP_REPLICATION; #84795: STOP GROUP_REPLICATION sets super_read_only=off 35 / 65
  • 36. My Failed Recommendation In an attempt to prevent split brain and because of: #84728: GR failure at start still starts MySQL I tried to enforce super_read_only=1 at boot, but that failed too: #84733: not possible to start with super_read_only=1 I did not find a way to prevent a MySQL node from starting as a individual r/w MySQL server when Group Replication failed to start. 36 / 65
  • 37. MySQL Group Replication Monitoring (Profiling, Trending, Alerting, Status, Troubleshooting) 37 / 65
  • 38. Performance Schema SELECT TABLE_NAME FROM information_schema.TABLES WHERE TABLE_SCHEMA='performance_schema' AND TABLE_NAME LIKE '%replication%'; +-------------------------------------------+ | TABLE_NAME | +-------------------------------------------+ | replication_applier_configuration | | replication_applier_status | | replication_applier_status_by_coordinator | | replication_applier_status_by_worker | | replication_connection_configuration | | replication_connection_status | | replication_group_member_stats | | replication_group_members | +-------------------------------------------+ 2 replication appliers: group_replication_applier <- group replication 38 / 65
  • 39. Trending - SHOW GLOBAL STATUS Limited Status Information (which are usually easy to gather): mysql> show global status like '%group%'; +----------------------------------+--------------------------------------+ | Variable_name | Value | +----------------------------------+--------------------------------------+ | Com_group_replication_start | 0 | | Com_group_replication_stop | 0 | | group_replication_primary_member | 72149827-e1cc-11e6-9daf-08002789cd2e | +----------------------------------+--------------------------------------+ 39 / 65
  • 40. Trending - PFS mysql> select * from replication_group_member_statsG *************************** 1. row *************************** CHANNEL_NAME: group_replication_applier VIEW_ID: 14860449946972589:2 MEMBER_ID: 74dc6ab2-e1cc-11e6-92aa-08002789cd2e COUNT_TRANSACTIONS_IN_QUEUE: 0 # Certification queue COUNT_TRANSACTIONS_CHECKED: 4 COUNT_CONFLICTS_DETECTED: 0 COUNT_TRANSACTIONS_ROWS_VALIDATING: 0 TRANSACTIONS_COMMITTED_ALL_MEMBERS: 72149827-e1cc-11e6-9daf-08002789cd2e:1, 740e1fd2-e1cc-11e6-a8ec-08002789cd2e:1-2, 74dc6ab2-e1cc-11e6-92aa-08002789cd2e:1-2, da7aba5e-dead-da7a-ba55-da7aba5e57ab:1-444:1000041-1000503:2000041- LAST_CONFLICT_FREE_TRANSACTION: da7aba5e-dead-da7a-ba55-da7aba5e57ab:444 1 row in set (0.00 sec) 40 / 65
  • 41. Group Replication Status mysql> select * from replication_connection_statusG *************************** 1. row *************************** CHANNEL_NAME: group_replication_applier GROUP_NAME: da7aba5e-dead-da7a-ba55-da7aba5e57ab SOURCE_UUID: da7aba5e-dead-da7a-ba55-da7aba5e57ab THREAD_ID: NULL SERVICE_STATE: ON COUNT_RECEIVED_HEARTBEATS: 0 LAST_HEARTBEAT_TIMESTAMP: 0000-00-00 00:00:00 RECEIVED_TRANSACTION_SET: 72149827-e1cc-11e6-9daf-08002789cd2e:1, 740e1fd2-e1cc-11e6-a8ec-08002789cd2e:1-2, 74dc6ab2-e1cc-11e6-92aa-08002789cd2e:1-2, da7aba5e-dead-da7a-ba55-da7aba5e57ab:1-444:1000041-1000503:2000041-2000648 LAST_ERROR_NUMBER: 0 LAST_ERROR_MESSAGE: LAST_ERROR_TIMESTAMP: 0000-00-00 00:00:00 41 / 65
  • 42. Group Replication Members mysql> select * from replication_group_members; +--------------------------------------+------+------+--------+ | ID | HOST | PORT | STATE | +--------------------------------------+------+------+--------+ | 72149827-e1cc-11e6-9daf-08002789cd2e | gr-1 | 3306 | ONLINE | | 74dc6ab2-e1cc-11e6-92aa-08002789cd2e | gr-3 | 3306 | ONLINE | +--------------------------------------+------+------+--------+ 2 rows in set (0.00 sec) # slightly modified output #84796: GR Member status is wrong 42 / 65
  • 43. Group Replication Read or Write. mysql> select @@global.super_read_only; +--------------------------+ | @@global.super_read_only | +--------------------------+ | 1 | +--------------------------+ 1 row in set (0.05 sec) 43 / 65
  • 44. Group Replication Lag SELECT sys.gtid_count( GTID_SUBTRACT( ( SELECT Received_transaction_set FROM performance_schema.replication_connection_status WHERE Channel_name = 'group_replication_applier' ), (SELECT @@global.GTID_EXECUTED) ) ) ) Thanks to @lefred: https://github.com/lefred/mysql_gr_routing_check/ 44 / 65
  • 45. Commands mysql> SHOW SLAVE STATUS FOR CHANNEL 'group_replication_recovery'G mysql> SHOW SLAVE STATUS FOR CHANNEL 'group_replication_applier'G ERROR 3139 (HY000): SHOW SLAVE STATUS cannot be performed on channel 'group_re 45 / 65
  • 46. Member State Changes Can use improvements: #84796: GR Member status is wrong #84798: Group Replication can use some verbosity in the error log 46 / 65
  • 47. Multi Node Conflicts Optimistic Locking First committer wins #84730: ability to troubleshoot transaction rollbacks ERROR 3101 (HY000) at line 1: Plugin instructed the server to rollback the current transaction. 47 / 65
  • 49. Backups It's just InnoDB, use your favorite GTID supported backup tool: Percona XtraBackup MySQL Enterprise Backup mysqldump mysqlpump mydumper but... 49 / 65
  • 50. Backups It's just InnoDB, use your favorite GTID supported backup tool: Percona XtraBackup MySQL Enterprise Backup mysqldump mysqlpump mydumper but... #84799: mysqldump --single-transaction uses savepoints, does not work with GR mydumper --use-savepoints is also affected 50 / 65
  • 51. MySQL Group Replication Load Balancers 51 / 65
  • 52. MySQL Router (Beta) MySQL Router is part of MySQL InnoDB Cluster 52 / 65
  • 53. MySQL Router (Beta) MySQL Router is part of MySQL InnoDB Cluster I briefly evaluated, but quickly ran into serious problems: missing a lot of features pretty unknown in the community ...: #83237: mysqlrouter connects to wrong metadata server (a partitioned node) Visibility: #83236: How to see mysqlrouter membership status? 53 / 65
  • 54. MySQL Router (Beta) MySQL Router is part of MySQL InnoDB Cluster I briefly evaluated, but quickly ran into serious problems: missing a lot of features pretty unknown in the community ...: #83237: mysqlrouter connects to wrong metadata server (a partitioned node) Visibility: #83236: How to see mysqlrouter membership status? I might consider to re-evaluate, but first ^^ 54 / 65
  • 55. ProxySQL Really Open Source! Becoming very popular Example Implementation http://lefred.be/content/ha-with- mysql-group-replication-and-proxysql/ Careful: #2: using multiple hostgroups/schedulers with proxysql_groupreplication_checker.sh can cause unwanted state changes 55 / 65
  • 57. #84784 - Nodes Do Not Reconnect Nodes do not reconnect to the group replication once they got disconnected, causing nodes to drop from the cluster and can lead to losing the whole cluster availability 57 / 65
  • 59. Improvements Reduce impact on applications: #84731: mysql client connections get stuck during GR start 59 / 65
  • 60. Improvements Reduce impact on applications: #84731: mysql client connections get stuck during GR start Partition Tolerance issues, split brain cannot be prevented: #84727: partitioned nodes still accept writes: queries hang #84728: GR failure at start still starts MySQL #84729: block reads on partitioned nodes * #84733: not possible to start with super_read_only=1 #84784: Nodes Do Not Reconnect #84795: STOP GROUP_REPLICATION sets super_read_only=off 60 / 65
  • 61. Improvements Stability: #84785: Prevent Large Transactions in Group Replication #84792: Member using 100% CPU in idle cluster #84796: GR Member status is wrong 61 / 65
  • 62. Improvements Stability: #84785: Prevent Large Transactions in Group Replication #84792: Member using 100% CPU in idle cluster #84796: GR Member status is wrong Usability: #84674: unresolved hostnames block GR from starting #84794: cannot kill query that is stuck inside GR #84799: mysqldump --single-transaction uses savepoints, does not work with GR #84798: Group Replication can use some verbosity in the error log 62 / 65
  • 63. For Every Bug Fixed: 1 Beer 63 / 65
  • 65. Summary Use Cases for Group Replication Environments with strict durability requirements Ensure split-brain can be completely avoided Write to multiple nodes ('scalability' by splitting write/read workloads) Not recommended (yet) Improve failover time Reducing impact on applications can be improved ... 65 / 65