mysql group replication - handson tutorial

191
1 / 191

Upload: kenny-gryp

Post on 25-Jan-2017

140 views

Category:

Data & Analytics


11 download

TRANSCRIPT

Page 1: MySQL Group Replication - HandsOn Tutorial

1 / 191

Page 2: MySQL Group Replication - HandsOn Tutorial

MySQL Group Replication in a nutshell

MySQL InnoDB Cluster: hands-on tutorial

 

Percona Live Amsterdam - October 2016

 

Frédéric Descamps - MySQL Community Manager - Oracle

Kenny Gryp - MySQL Practice Manager - Percona

2 / 191

Page 3: MySQL Group Replication - HandsOn Tutorial

 

Safe Harbor StatementThe following is intended to outline our general product direction. It is intended forinformation purpose only, and may not be incorporated into any contract. It is not acommitment to deliver any material, code, or functionality, and should not be relied up inmaking purchasing decisions. The development, release and timing of any features orfunctionality described for Oracle's product remains at the sole discretion of Oracle.

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

3 / 191

Page 4: MySQL Group Replication - HandsOn Tutorial

about.me/lefred

Who are we ?

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

4 / 191

Page 5: MySQL Group Replication - HandsOn Tutorial

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

5 / 191

Page 6: MySQL Group Replication - HandsOn Tutorial

Frédéric Descamps@lefredMySQL EvangelistManaging MySQL since 3.23devops believer

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

6 / 191

Page 7: MySQL Group Replication - HandsOn Tutorial

Kenny Gryp@grypMySQL Practice Manager

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

7 / 191

Page 8: MySQL Group Replication - HandsOn Tutorial

get more at the conference

MySQL Group Replication

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

8 / 191

Page 9: MySQL Group Replication - HandsOn Tutorial

Other sessionMySQL Replication: Latest Developments

Luìs SoaresTuesday 4 October 20163:10pm to 4:00pm - Zürich 1

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

9 / 191

Page 10: MySQL Group Replication - HandsOn Tutorial

AgendaPrepare your workstation

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

10 / 191

Page 11: MySQL Group Replication - HandsOn Tutorial

AgendaPrepare your workstationGroup Replication concepts

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

11 / 191

Page 12: MySQL Group Replication - HandsOn Tutorial

AgendaPrepare your workstationGroup Replication conceptsMigration from Master-Slave to GR

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

12 / 191

Page 13: MySQL Group Replication - HandsOn Tutorial

AgendaPrepare your workstationGroup Replication conceptsMigration from Master-Slave to GRHow to monitor ?

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

13 / 191

Page 14: MySQL Group Replication - HandsOn Tutorial

AgendaPrepare your workstationGroup Replication conceptsMigration from Master-Slave to GRHow to monitor ?Application interaction

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

14 / 191

Page 15: MySQL Group Replication - HandsOn Tutorial

VirtualBox

Setup your workstation

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

15 / 191

Page 16: MySQL Group Replication - HandsOn Tutorial

Setup your workstationInstall VirtualBox 5On the USB key, there is a file called PLAM16_GR.ova, please copy it on yourlaptop and doubleclick on itStart all virtual machines (mysql1, mysql2, mysql3 & mysql4)Install putty if you are using Windows

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

16 / 191

Page 17: MySQL Group Replication - HandsOn Tutorial

Setup your workstationInstall VirtualBox 5On the USB key, there is a file called PLAM16_GR.ova, please copy it on yourlaptop and doubleclick on itStart all virtual machines (mysql1, mysql2, mysql3 & mysql4)Install putty if you are using WindowsTry to connect to all VM's from your terminal or putty (root password is X) :ssh -p 8821 [email protected] to mysql1ssh -p 8822 [email protected] to mysql2ssh -p 8823 [email protected] to mysql3ssh -p 8824 [email protected] to mysql4

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

17 / 191

Page 18: MySQL Group Replication - HandsOn Tutorial

LAB1: Current situation

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

18 / 191

Page 19: MySQL Group Replication - HandsOn Tutorial

launchrun_app.sh

on mysql1 intoa screensessionverify thatmysql2 is arunning slave

LAB1: Current situation

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

19 / 191

Page 20: MySQL Group Replication - HandsOn Tutorial

Summary 

+--------+----------+--------------+-----------------+| | ROLE | SSH PORT | INTERNAL IP |+--------+----------+--------------+-----------------+ | | | | | | mysql1 | master | 8821 | 192.168.56.11 | | | | | | | mysql2 | slave | 8822 | 192.168.56.12 | | | | | | | mysql3 | n/a | 8823 | 192.168.56.13 | | | | | | | mysql4 | n/a | 8824 | 192.168.56.14 | | | | | | +--------+----------+--------------+-----------------+

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

20 / 191

Page 21: MySQL Group Replication - HandsOn Tutorial

the magic explained

Group Replication Concept

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

21 / 191

Page 22: MySQL Group Replication - HandsOn Tutorial

Group Replication : what is it ?

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

22 / 191

Page 23: MySQL Group Replication - HandsOn Tutorial

Group Replication : what is it ?MySQL Group Replication is one of the major components of MySQL InnoDB Cluster

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

23 / 191

Page 24: MySQL Group Replication - HandsOn Tutorial

Group Replication : what is it ?MySQL Group Replication is one of the major components of MySQL InnoDB Cluster  

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

24 / 191

Page 25: MySQL Group Replication - HandsOn Tutorial

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

25 / 191

Page 26: MySQL Group Replication - HandsOn Tutorial

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

26 / 191

Page 27: MySQL Group Replication - HandsOn Tutorial

Group replication is a plugin !

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

27 / 191

Page 28: MySQL Group Replication - HandsOn Tutorial

Group replication is a plugin !GR is a plugin for MySQL, made by MySQL and packaged with MySQL

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

28 / 191

Page 29: MySQL Group Replication - HandsOn Tutorial

Group replication is a plugin !GR is a plugin for MySQL, made by MySQL and packaged with MySQLGR is an implementation of Replicated Database State Machine theory

MySQL Group Communication System (GCS) is based on Paxos Mencius

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

29 / 191

Page 30: MySQL Group Replication - HandsOn Tutorial

Group replication is a plugin !GR is a plugin for MySQL, made by MySQL and packaged with MySQLGR is an implementation of Replicated Database State Machine theory

MySQL Group Communication System (GCS) is based on Paxos MenciusProvides virtually synchronous replication for MySQL 5.7+

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

30 / 191

Page 31: MySQL Group Replication - HandsOn Tutorial

Group replication is a plugin !GR is a plugin for MySQL, made by MySQL and packaged with MySQLGR is an implementation of Replicated Database State Machine theory

MySQL Group Communication System (GCS) is based on Paxos MenciusProvides virtually synchronous replication for MySQL 5.7+Supported on all MySQL platforms !!

Linux, Windows, Solaris, OSX, FreeBSD

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

31 / 191

Page 32: MySQL Group Replication - HandsOn Tutorial

“Multi-master update anywhere replication plugin for MySQL with built-in conflictdetection and resolution, automatic distributed recovery, and group membership.”

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

32 / 191

Page 33: MySQL Group Replication - HandsOn Tutorial

Group Replication : how does it work ?

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

33 / 191

Page 34: MySQL Group Replication - HandsOn Tutorial

Group Replication : how does it work ?A node (member of the group) sends the changes (binlog events) made by atransaction to the group through the GCS.

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

34 / 191

Page 35: MySQL Group Replication - HandsOn Tutorial

Group Replication : how does it work ?A node (member of the group) sends the changes (binlog events) made by atransaction to the group through the GCS.All members consume the writeset and certify it, no need to wait for all members,ack by the majority is enough.

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

35 / 191

Page 36: MySQL Group Replication - HandsOn Tutorial

Group Replication : how does it work ?A node (member of the group) sends the changes (binlog events) made by atransaction to the group through the GCS.All members consume the writeset and certify it, no need to wait for all members,ack by the majority is enough.If passed it is applied, if failed, transaction is rolled back on originating server anddiscarded at other servers.

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

36 / 191

Page 37: MySQL Group Replication - HandsOn Tutorial

OK... but how does it work ?!

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

37 / 191

Page 38: MySQL Group Replication - HandsOn Tutorial

OK... but how does it work ?!It's just magic !

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

38 / 191

Page 39: MySQL Group Replication - HandsOn Tutorial

OK... but how does it work ?!It's just magic !

... no, the writeset replication is synchronous and then certification and applying of thechanges happen locally on each node and is asynchronous.

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

39 / 191

Page 40: MySQL Group Replication - HandsOn Tutorial

OK... but how does it work ?!It's just magic !

... no, the writeset replication is synchronous and then certification and applying of thechanges happen locally on each node and is asynchronous.

not that easy to understand... right ? Let's illustrate this...

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

40 / 191

Page 41: MySQL Group Replication - HandsOn Tutorial

MySQL Group Replication (autocommit)

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

41 / 191

Page 42: MySQL Group Replication - HandsOn Tutorial

MySQL Group Replication (autocommit)

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

42 / 191

Page 43: MySQL Group Replication - HandsOn Tutorial

MySQL Group Replication (autocommit)

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

43 / 191

Page 44: MySQL Group Replication - HandsOn Tutorial

MySQL Group Replication (autocommit)

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

44 / 191

Page 45: MySQL Group Replication - HandsOn Tutorial

MySQL Group Replication (autocommit)

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

45 / 191

Page 46: MySQL Group Replication - HandsOn Tutorial

MySQL Group Replication (autocommit)

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

46 / 191

Page 47: MySQL Group Replication - HandsOn Tutorial

MySQL Group Replication (autocommit)

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

47 / 191

Page 48: MySQL Group Replication - HandsOn Tutorial

MySQL Group Replication (autocommit)

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

48 / 191

Page 49: MySQL Group Replication - HandsOn Tutorial

MySQL Group Replication (autocommit)

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

49 / 191

Page 50: MySQL Group Replication - HandsOn Tutorial

MySQL Group Replication (autocommit)

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

50 / 191

Page 51: MySQL Group Replication - HandsOn Tutorial

MySQL Group Replication (autocommit)

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

51 / 191

Page 52: MySQL Group Replication - HandsOn Tutorial

MySQL Group Replication (full transaction)

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

52 / 191

Page 53: MySQL Group Replication - HandsOn Tutorial

MySQL Group Replication (full transaction)

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

53 / 191

Page 54: MySQL Group Replication - HandsOn Tutorial

MySQL Group Replication (full transaction)

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

54 / 191

Page 55: MySQL Group Replication - HandsOn Tutorial

MySQL Group Replication (full transaction)

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

55 / 191

Page 56: MySQL Group Replication - HandsOn Tutorial

MySQL Group Replication (full transaction)

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

56 / 191

Page 57: MySQL Group Replication - HandsOn Tutorial

MySQL Group Replication (full transaction)

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

57 / 191

Page 58: MySQL Group Replication - HandsOn Tutorial

MySQL Group Replication (full transaction)

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

58 / 191

Page 59: MySQL Group Replication - HandsOn Tutorial

MySQL Group Replication (full transaction)

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

59 / 191

Page 60: MySQL Group Replication - HandsOn Tutorial

MySQL Group Replication (full transaction)

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

60 / 191

Page 61: MySQL Group Replication - HandsOn Tutorial

Group Replication : Total Order Delivery - GTID

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

61 / 191

Page 62: MySQL Group Replication - HandsOn Tutorial

Group Replication : Total Order Delivery - GTID

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

62 / 191

Page 63: MySQL Group Replication - HandsOn Tutorial

Group Replication : Total Order Delivery - GTID

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

63 / 191

Page 64: MySQL Group Replication - HandsOn Tutorial

Group Replication : Total Order Delivery - GTID

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

64 / 191

Page 65: MySQL Group Replication - HandsOn Tutorial

Group Replication : Total Order Delivery - GTID

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

65 / 191

Page 66: MySQL Group Replication - HandsOn Tutorial

Group Replication : Total Order Delivery - GTID

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

66 / 191

Page 67: MySQL Group Replication - HandsOn Tutorial

Group Replication : Total Order Delivery - GTID

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

67 / 191

Page 68: MySQL Group Replication - HandsOn Tutorial

Group Replication : Total Order Delivery - GTID

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

68 / 191

Page 69: MySQL Group Replication - HandsOn Tutorial

Group Replication : Total Order Delivery - GTID

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

69 / 191

Page 70: MySQL Group Replication - HandsOn Tutorial

Group Replication : Total Order Delivery - GTID

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

70 / 191

Page 71: MySQL Group Replication - HandsOn Tutorial

Group Replication : Total Order Delivery - GTID

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

71 / 191

Page 72: MySQL Group Replication - HandsOn Tutorial

Group Replication : Total Order Delivery - GTID

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

72 / 191

Page 73: MySQL Group Replication - HandsOn Tutorial

Group Replication : Total Order Delivery - GTID

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

73 / 191

Page 74: MySQL Group Replication - HandsOn Tutorial

Group Replication : Total Order Delivery - GTID

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

74 / 191

Page 75: MySQL Group Replication - HandsOn Tutorial

Group Replication : Total Order Delivery - GTID

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

75 / 191

Page 76: MySQL Group Replication - HandsOn Tutorial

Group Replication : Total Order Delivery - GTID

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

76 / 191

Page 77: MySQL Group Replication - HandsOn Tutorial

Group Replication : Total Order Delivery - GTID

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

77 / 191

Page 78: MySQL Group Replication - HandsOn Tutorial

Group Replication : Total Order Delivery - GTID

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

78 / 191

Page 79: MySQL Group Replication - HandsOn Tutorial

Group Replication : Total Order Delivery - GTID

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

79 / 191

Page 80: MySQL Group Replication - HandsOn Tutorial

Group Replication : Optimistic LockingGroup Replication uses optimistic locking

during a transaction, local (InnoDB) locking happensoptimistically assumes there will be no conflicts across nodes (no communication between nodes necessary)cluster-wide conflict resolution happens only at COMMIT, during certification

Let's first have a look at the traditional locking to compare.

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

80 / 191

Page 81: MySQL Group Replication - HandsOn Tutorial

Traditional locking

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

81 / 191

Page 82: MySQL Group Replication - HandsOn Tutorial

Traditional locking

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

82 / 191

Page 83: MySQL Group Replication - HandsOn Tutorial

Traditional locking

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

83 / 191

Page 84: MySQL Group Replication - HandsOn Tutorial

Traditional locking

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

84 / 191

Page 85: MySQL Group Replication - HandsOn Tutorial

Traditional locking

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

85 / 191

Page 86: MySQL Group Replication - HandsOn Tutorial

Traditional locking

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

86 / 191

Page 87: MySQL Group Replication - HandsOn Tutorial

Optimistic Locking

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

87 / 191

Page 88: MySQL Group Replication - HandsOn Tutorial

Optimistic Locking

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

88 / 191

Page 89: MySQL Group Replication - HandsOn Tutorial

Optimistic Locking

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

89 / 191

Page 90: MySQL Group Replication - HandsOn Tutorial

Optimistic Locking

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

90 / 191

Page 91: MySQL Group Replication - HandsOn Tutorial

Optimistic Locking

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

91 / 191

Page 92: MySQL Group Replication - HandsOn Tutorial

Optimistic Locking

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

92 / 191

Page 93: MySQL Group Replication - HandsOn Tutorial

Optimistic Locking

The system returns error 149 as certification failed:

ERROR 1180 (HY000): Got error 149 during COMMIT

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

93 / 191

Page 94: MySQL Group Replication - HandsOn Tutorial

Group Replication : requirementsexclusively works with InnoDB tables only

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

94 / 191

Page 95: MySQL Group Replication - HandsOn Tutorial

Group Replication : requirementsexclusively works with InnoDB tables onlyevery tables must have a PK defined

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

95 / 191

Page 96: MySQL Group Replication - HandsOn Tutorial

Group Replication : requirementsexclusively works with InnoDB tables onlyevery tables must have a PK definedonly IPV4 is supported

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

96 / 191

Page 97: MySQL Group Replication - HandsOn Tutorial

Group Replication : requirementsexclusively works with InnoDB tables onlyevery tables must have a PK definedonly IPV4 is supporteda good network with low latency is important

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

97 / 191

Page 98: MySQL Group Replication - HandsOn Tutorial

Group Replication : requirementsexclusively works with InnoDB tables onlyevery tables must have a PK definedonly IPV4 is supporteda good network with low latency is importantmaximum of 9 members per group

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

98 / 191

Page 99: MySQL Group Replication - HandsOn Tutorial

Group Replication : requirementsexclusively works with InnoDB tables onlyevery tables must have a PK definedonly IPV4 is supporteda good network with low latency is importantmaximum of 9 members per grouplog-bin must be enabled and only ROW format is supported

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

99 / 191

Page 100: MySQL Group Replication - HandsOn Tutorial

Group Replication : requirements (2)enable GTIDs

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

100 / 191

Page 101: MySQL Group Replication - HandsOn Tutorial

Group Replication : requirements (2)enable GTIDsreplication meta-data must be stored on system tables

--master-info-repository=TABLE --relay-log-info-repository=TABLE

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

101 / 191

Page 102: MySQL Group Replication - HandsOn Tutorial

Group Replication : requirements (2)enable GTIDsreplication meta-data must be stored on system tables

--master-info-repository=TABLE --relay-log-info-repository=TABLE

writesets extraction must be enabled

--transaction-write-set-extraction=XXHASH64

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

102 / 191

Page 103: MySQL Group Replication - HandsOn Tutorial

Group Replication : requirements (2)enable GTIDsreplication meta-data must be stored on system tables

--master-info-repository=TABLE --relay-log-info-repository=TABLE

writesets extraction must be enabled

--transaction-write-set-extraction=XXHASH64

log-slave-updates must be enabled

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

103 / 191

Page 104: MySQL Group Replication - HandsOn Tutorial

Group Replication : limitationsThere are also some technical limitations:

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

104 / 191

Page 105: MySQL Group Replication - HandsOn Tutorial

Group Replication : limitationsThere are also some technical limitations:

binlog checksum is not supported

--binlog-checksum=NONE

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

105 / 191

Page 106: MySQL Group Replication - HandsOn Tutorial

Group Replication : limitationsThere are also some technical limitations:

binlog checksum is not supported

--binlog-checksum=NONE

Savepoints are not supported

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

106 / 191

Page 107: MySQL Group Replication - HandsOn Tutorial

Group Replication : limitationsThere are also some technical limitations:

binlog checksum is not supported

--binlog-checksum=NONE

Savepoints are not supportedSERIALIZABLE is not supported as transaction isolation level

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

107 / 191

Page 108: MySQL Group Replication - HandsOn Tutorial

Group Replication : limitationsThere are also some technical limitations:

binlog checksum is not supported

--binlog-checksum=NONE

Savepoints are not supportedSERIALIZABLE is not supported as transaction isolation levelan object cannot be changed concurrently at different servers by two operations,where one of them is a DDL and the other is either a DML or DDL.

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

108 / 191

Page 109: MySQL Group Replication - HandsOn Tutorial

Is my workload ready for Group Replication ?As the writesets (transactions) are replicated to all available nodes on commit, and asthey are certified on every node, a very large writeset could increase the amount ofcertification errors.

Additionally, changing the same record on all the nodes (hotspot) concurrently will alsocause problems.

And finally, the certification uses the primary key of the tables, a table without PK is alsoa problem.

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

109 / 191

Page 110: MySQL Group Replication - HandsOn Tutorial

Is my workload ready for Group Replication ?Therefore, when using Group Replication, we should pay attention to these points:

PK is mandatory (and a good one is better)avoid large transactionsavoid hotspot

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

110 / 191

Page 111: MySQL Group Replication - HandsOn Tutorial

ready ?

Migration from Master-Slave to GR

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

111 / 191

Page 112: MySQL Group Replication - HandsOn Tutorial

The plan

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

112 / 191

Page 113: MySQL Group Replication - HandsOn Tutorial

1) We install andsetup MySQL InnoDBCluster on one of thenew servers

The plan

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

113 / 191

Page 114: MySQL Group Replication - HandsOn Tutorial

2) We restore abackup

3) setupasynchronousreplication on the newserver.

The plan

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

114 / 191

Page 115: MySQL Group Replication - HandsOn Tutorial

4) We add a newinstance to our group

The plan

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

115 / 191

Page 116: MySQL Group Replication - HandsOn Tutorial

5) We point theapplication to one ofour new nodes.

6) We wait and checkthat asynchronousreplication is caughtup

7) we stop thoseasynchronous slaves

The plan

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

116 / 191

Page 117: MySQL Group Replication - HandsOn Tutorial

8) We attach themysql2 slave to thegroup

The plan

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

117 / 191

Page 118: MySQL Group Replication - HandsOn Tutorial

9) Use MySQL Routerfor directing traffic

The plan

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

118 / 191

Page 119: MySQL Group Replication - HandsOn Tutorial

MySQL InnoDB Cluster from Labs is alreadyinstalled on mysql3.

Let's take a backup on mysql1:

[mysql1 ~]# xtrabackup --backup \ --target-dir=/tmp/backup \ --user=root \ --password=X --host=127.0.0.1

[mysql1 ~]# xtrabackup --prepare \ --target-dir=/tmp/backup

LAB2: Prepare mysql3Asynchronous slave

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

119 / 191

Page 120: MySQL Group Replication - HandsOn Tutorial

LAB2: Prepare mysql3 (2)Asynchronous slave

Copy the backup from mysql1 to mysql3:

[mysql1 ~]# scp -r /tmp/backup mysql3:/tmp

And restore it:

[mysql3 ~]# xtrabackup --copy-back --target-dir=/tmp/backup [mysql3 ~]# chown -R mysql. /var/lib/mysql

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

120 / 191

Page 121: MySQL Group Replication - HandsOn Tutorial

LAB3: mysql3 as asynchronous slave (2)Asynchronous slave

Configure /etc/my.cnf:

[mysqld]...server_id=3enforce_gtid_consistency = ongtid_mode = onlog_bin log_slave_updates

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

121 / 191

Page 122: MySQL Group Replication - HandsOn Tutorial

LAB2: Prepare mysql3 (3)Asynchronous slave

Let's start MySQL on mysql3:

[mysql3 ~]# systemctl start mysqld

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

122 / 191

Page 123: MySQL Group Replication - HandsOn Tutorial

find the GTIDs purgedchange MASTERset the purged GTIDsstart replication

LAB3: mysql3 as asynchronous slave (1) 

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

123 / 191

Page 124: MySQL Group Replication - HandsOn Tutorial

LAB3: mysql3 as asynchronous slave (2)Find the latest purged GTIDs:

[mysql3 ~]# cat /tmp/backup/xtrabackup_binlog_info mysql-bin.000002 167646328 b346474c-8601-11e6-9b39-08002718d305:1-771

Connect to mysql3 and setup replication:

mysql> CHANGE MASTER TO MASTER_HOST="mysql1", MASTER_USER="repl_async", MASTER_PASSWORD='Xslave', MASTER_AUTO_POSITION=1;

mysql> RESET MASTER;mysql> SET global gtid_purged="VALUE FOUND PREVIOUSLY";

mysql> START SLAVE;

Check that you receive the application's traffic

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

124 / 191

Page 125: MySQL Group Replication - HandsOn Tutorial

LAB4: MySQL InnoDB ClusterCreate a single instance cluster

Time to use the new MySQL Shell !

[mysql3 ~]# mysqlsh

Let's verify if our server is ready to become a member of a new cluster:

mysql-js> dba.validateInstance('root@mysql3:3306')

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

125 / 191

Page 126: MySQL Group Replication - HandsOn Tutorial

LAB4: configuration settings (2)

mysql3's my.cnf

Configure /etc/my.cnf:

[mysqld]...server_id=3enforce_gtid_consistency = ongtid_mode = onlog_bin log_slave_updates

binlog_checksum = nonemaster_info_repository = TABLErelay_log_info_repository = TABLEtransaction_write_set_extraction = XXHASH64

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

126 / 191

Page 127: MySQL Group Replication - HandsOn Tutorial

LAB4: configuration settings (2)

mysql3's my.cnf

Configure /etc/my.cnf:

[mysqld]...server_id=3enforce_gtid_consistency = ongtid_mode = onlog_bin log_slave_updates

binlog_checksum = nonemaster_info_repository = TABLErelay_log_info_repository = TABLEtransaction_write_set_extraction = XXHASH64

[mysql3 ~]# systemctl restart mysqld

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

127 / 191

Page 128: MySQL Group Replication - HandsOn Tutorial

LAB4: MySQL InnoDB Cluster (3)Create a single instance cluster

[mysql3 ~]# mysqlsh

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

128 / 191

Page 129: MySQL Group Replication - HandsOn Tutorial

LAB4: MySQL InnoDB Cluster (3)Create a single instance cluster

[mysql3 ~]# mysqlsh

mysql-js> dba.validateInstance('root@mysql3:3306')

mysql-js> \c root@mysql3:3306

mysql-js> cluster = dba.createCluster('plam')

The KEY is the only credential we need to remember to manage our cluster.

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

129 / 191

Page 130: MySQL Group Replication - HandsOn Tutorial

LAB4: MySQL InnoDB Cluster (3)Create a single instance cluster

[mysql3 ~]# mysqlsh

mysql-js> dba.validateInstance('root@mysql3:3306')

mysql-js> \c root@mysql3:3306

mysql-js> cluster = dba.createCluster('plam')

The KEY is the only credential we need to remember to manage our cluster.

mysql-js> cluster.status()

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

130 / 191

Page 131: MySQL Group Replication - HandsOn Tutorial

Cluster Statusmysql-js> cluster.status(){ "clusterName": "plam", "defaultReplicaSet": { "status": "Cluster is NOT tolerant to any failures.", "topology": { "mysql3:3306": { "address": "mysql3:3306", "status": "ONLINE", "role": "HA", "mode": "R/W", "leaves": {} } } }}

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

131 / 191

Page 132: MySQL Group Replication - HandsOn Tutorial

Add mysql4 to the Group:

restore the backupset the purged GTIDsuse MySQL shell

LAB5: add mysql4 to the cluster (1) 

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

132 / 191

Page 133: MySQL Group Replication - HandsOn Tutorial

LAB5: add mysql4 to the cluster (2)Copy the backup from mysql1 to mysql4:

[mysql1 ~]# scp -r /tmp/backup mysql4:/tmp

And restore it:

[mysql4 ~]# xtrabackup --copy-back --target-dir=/tmp/backup [mysql4 ~]# chown -R mysql. /var/lib/mysql

Start MySQL on mysql4:

[mysql4 ~]# systemctl start mysqld

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

133 / 191

Page 134: MySQL Group Replication - HandsOn Tutorial

LAB5: MySQL shell to add an instance (3)[mysql4 ~]# mysqlsh

Let's verify the config:

mysql-js> dba.validateInstance('root@mysql4:3306')

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

134 / 191

Page 135: MySQL Group Replication - HandsOn Tutorial

LAB5: MySQL shell to add an instance (4)Configure /etc/my.cnf:

[mysqld]...server_id=4enforce_gtid_consistency = ongtid_mode = onlog_bin log_slave_updates

binlog_checksum = nonemaster_info_repository = TABLErelay_log_info_repository = TABLEtransaction_write_set_extraction = XXHASH64

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

135 / 191

Page 136: MySQL Group Replication - HandsOn Tutorial

LAB5: MySQL shell to add an instance (4)Configure /etc/my.cnf:

[mysqld]...server_id=4enforce_gtid_consistency = ongtid_mode = onlog_bin log_slave_updates

binlog_checksum = nonemaster_info_repository = TABLErelay_log_info_repository = TABLEtransaction_write_set_extraction = XXHASH64

[mysql4 ~]# systemctl restart mysqld

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

136 / 191

Page 137: MySQL Group Replication - HandsOn Tutorial

LAB5: MySQL InnoDB Cluster (4)Group of 2 instances

Find the latest purged GTIDs:

[mysql4 ~]# cat /tmp/backup/xtrabackup_binlog_info mysql-bin.000002 167646328 b346474c-8601-11e6-9b39-08002718d305:1-77177

Connect to mysql4 and set GTID_PURGED

[mysql4 ~]# mysqlsh

mysql-js> \c root@mysql4:3306mysql-js> \sqlmysql-sql> RESET MASTER;mysql-sql> SET global gtid_purged="VALUE FOUND PREVIOUSLY";

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

137 / 191

Page 138: MySQL Group Replication - HandsOn Tutorial

LAB5: MySQL InnoDB Cluster (5)mysql-sql> \js

mysql-js> dba.validateInstance('root@mysql4:3306')

mysql-js> \c root@mysql3:3306

mysql-js> cluster = dba.getCluster('plam')

mysql-js> cluster.addInstance("root@mysql4:3306")

mysql-js> cluster.status()

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

138 / 191

Page 139: MySQL Group Replication - HandsOn Tutorial

Cluster Statusmysql-js> cluster.status(){ "clusterName": "plam", "defaultReplicaSet": { "status": "Cluster is NOT tolerant to any failures.", "topology": { "mysql3:3306": { "address": "mysql3:3306", "status": "ONLINE", "role": "HA", "mode": "R/W", "leaves": { "mysql4:3306": { "address": "mysql4:3306", "status": "RECOVERING", "role": "HA", "mode": "R/O", "leaves": {} } } } } }}

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

139 / 191

Page 140: MySQL Group Replication - HandsOn Tutorial

Recovering progressOn standard MySQL, monitor the group_replication_recovery channel to seethe progress:

mysql> show slave status for channel 'group_replication_recovery'\G *************************** 1. row *************************** Slave_IO_State: Waiting for master to send event Master_Host: mysql3 Master_User: mysql_innodb_cluster_rpl_user ... Slave_IO_Running: Yes Slave_SQL_Running: Yes ... Retrieved_Gtid_Set: 6e7d7848-860f-11e6-92e4-08002718d305:1-6,7c1f0c2d-860d-11e6-9df7-08002718d305:1-15,b346474c-8601-11e6-9b39-08002718d305:1964-77177,e8c524df-860d-11e6-9df7-08002718d305:1-2 Executed_Gtid_Set: 7c1f0c2d-860d-11e6-9df7-08002718d305:1-7,b346474c-8601-11e6-9b39-08002718d305:1-45408,e8c524df-860d-11e6-9df7-08002718d305:1-2 ...

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

140 / 191

Page 141: MySQL Group Replication - HandsOn Tutorial

point the applicationto the cluster

Migrate the application

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

141 / 191

Page 142: MySQL Group Replication - HandsOn Tutorial

LAB6: Migrate the applicationNow we need to point the application to mysql3, this is the only downtime !

...[ 21257s] threads: 4, tps: 12.00, reads: 167.94, writes: 47.98, response time: 18[ 21258s] threads: 4, tps: 6.00, reads: 83.96, writes: 23.99, response time: 14[ 21259s] threads: 4, tps: 7.00, reads: 98.05, writes: 28.01, response time: 16[ 31250s] threads: 4, tps: 8.00, reads: 111.95, writes: 31.99, response time: 30[ 31251s] threads: 4, tps: 11.00, reads: 154.01, writes: 44.00, response time: 13[ 31252s] threads: 4, tps: 11.00, reads: 153.94, writes: 43.98, response time: 12[ 31253s] threads: 4, tps: 10.01, reads: 140.07, writes: 40.02, response time: 17C[mysql1 ~]# run_app.sh mysql3

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

142 / 191

Page 143: MySQL Group Replication - HandsOn Tutorial

LAB6: Migrate the applicationMake sure replication is running properly on mysql2 and mysql3.

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

143 / 191

Page 144: MySQL Group Replication - HandsOn Tutorial

LAB6: Migrate the applicationMake sure replication is running properly on mysql2 and mysql3.

************************** 1. row ***************************... Master_Host: mysql1 Slave_IO_Running: Yes Slave_SQL_Running: No... Last_SQL_Errno: 3100 Last_SQL_Error: Error in Xid_log_event: Commit could not be completed, 'Error on observer while running replication hook 'before_commit'.' Replicate_Ignore_Server_Ids: Master_Server_Id: 1 Master_UUID: 8fbcd944-8760-11e6-9b4e-08002718d305... Last_SQL_Error_Timestamp: 160930 23:04:07 Retrieved_Gtid_Set: 8fbcd944-8760-11e6-9b4e-08002718d305:360-3704 Executed_Gtid_Set: 0b31b4f3-8762-11e6-bb35-08002718d305:1-7,30212757-8762-11e6-ad73-08002718d305:1-2,8fbcd944-8760-11e6-9b4e-08002718d305:1-2652 Auto_Position: 1

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

144 / 191

Page 145: MySQL Group Replication - HandsOn Tutorial

LAB6: Migrate the applicationFix replication if necessary:

mysql3> start slave;mysql3> show slave status;

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

145 / 191

Page 146: MySQL Group Replication - HandsOn Tutorial

LAB6: Migrate the applicationFix replication if necessary:

mysql3> start slave;mysql3> show slave status;

Stop asynchronous replication on mysql2 and mysql3:

mysql2> stop slave;mysql3> stop slave;

Make sure gtid_executed range on mysql2 is lower or equal than on mysql3

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

146 / 191

Page 147: MySQL Group Replication - HandsOn Tutorial

LAB6: Migrate the applicationFix replication if necessary:

mysql3> start slave;mysql3> show slave status;

Stop asynchronous replication on mysql2 and mysql3:

mysql2> stop slave;mysql3> stop slave;

Make sure gtid_executed range on mysql2 is lower or equal than on mysql3

mysql2> set global super_read_only=off;# http://bugs.mysql.com/bug.php?id=83234mysql2> reset slave all;mysql3> reset slave all;

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

147 / 191

Page 148: MySQL Group Replication - HandsOn Tutorial

previous slave(mysql2) can nowbe part of the cluster

Add a third instance

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

148 / 191

Page 149: MySQL Group Replication - HandsOn Tutorial

LAB7: Add mysql2 to the groupWe first validate the instance using MySQL shell and we modify the configuration.

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

149 / 191

Page 150: MySQL Group Replication - HandsOn Tutorial

LAB7: Add mysql2 to the groupWe first validate the instance using MySQL shell and we modify the configuration.

[mysqld]...super_read_only=0server_id=2binlog_checksum = noneenforce_gtid_consistency = ongtid_mode = onlog_bin log_slave_updatesmaster_info_repository = TABLErelay_log_info_repository = TABLEtransaction_write_set_extraction = XXHASH64

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

150 / 191

Page 151: MySQL Group Replication - HandsOn Tutorial

LAB7: Add mysql2 to the groupWe first validate the instance using MySQL shell and we modify the configuration.

[mysqld]...super_read_only=0server_id=2binlog_checksum = noneenforce_gtid_consistency = ongtid_mode = onlog_bin log_slave_updatesmaster_info_repository = TABLErelay_log_info_repository = TABLEtransaction_write_set_extraction = XXHASH64

[mysql2 ~]# systemctl restart mysqld

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

151 / 191

Page 152: MySQL Group Replication - HandsOn Tutorial

LAB7: Add mysql2 to the group (2)Back in MySQL shell we add the new instance:

[mysql2 ~]# mysqlsh

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

152 / 191

Page 153: MySQL Group Replication - HandsOn Tutorial

LAB7: Add mysql2 to the group (2)Back in MySQL shell we add the new instance:

[mysql2 ~]# mysqlsh

mysql-js> dba.validateInstance('root@mysql2:3306')

mysql-js> \c root@mysql3:3306

mysql-js> cluster = dba.getCluster('plam')

mysql-js> cluster.addInstance("root@mysql2:3306")

mysql-js> cluster.status()

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

153 / 191

Page 154: MySQL Group Replication - HandsOn Tutorial

LAB7: Add mysql2 to the group (3){ "clusterName": "plam", "defaultReplicaSet": { "status": "Cluster tolerant to up to ONE failure.", "topology": { "mysql3:3306": { "address": "mysql3:3306", "status": "ONLINE", "role": "HA", "mode": "R/W", "leaves": { "mysql4:3306": { "address": "mysql4:3306", "status": "ONLINE", "role": "HA", "mode": "R/O", "leaves": {} }, "mysql2:3306": { "address": "mysql2:3306", "status": "ONLINE", "role": "HA", "mode": "R/O", "leaves": {} } } Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

154 / 191

Page 155: MySQL Group Replication - HandsOn Tutorial

WOOHOOOOW

IT WORKS!

155 / 191

Page 156: MySQL Group Replication - HandsOn Tutorial

writing to a single server

Single Primary Mode

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

156 / 191

Page 157: MySQL Group Replication - HandsOn Tutorial

Default = Single Primary ModeBy default, MySQL InnoDB Cluster enables Single Primary Mode.

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

157 / 191

Page 158: MySQL Group Replication - HandsOn Tutorial

Default = Single Primary ModeBy default, MySQL InnoDB Cluster enables Single Primary Mode.

mysql> show global variables like 'group_replication_single_primary_mode';+---------------------------------------+-------+| Variable_name | Value |+---------------------------------------+-------+| group_replication_single_primary_mode | ON |+---------------------------------------+-------+

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

158 / 191

Page 159: MySQL Group Replication - HandsOn Tutorial

Default = Single Primary ModeBy default, MySQL InnoDB Cluster enables Single Primary Mode.

mysql> show global variables like 'group_replication_single_primary_mode';+---------------------------------------+-------+| Variable_name | Value |+---------------------------------------+-------+| group_replication_single_primary_mode | ON |+---------------------------------------+-------+

In Single Primary Mode, a single member acts as the writable master (PRIMARY) andthe rest of the members act as hot-standbys (SECONDARY).

The group itself coordinates and configures itself automatically to determine whichmember will act as the PRIMARY, through a leader election mechanism.

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

159 / 191

Page 160: MySQL Group Replication - HandsOn Tutorial

Who's the Primary Master ?As the Primary Master is elected, all nodes part of the group knows which one waselected. This value is exposed in status variables:

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

160 / 191

Page 161: MySQL Group Replication - HandsOn Tutorial

Who's the Primary Master ?As the Primary Master is elected, all nodes part of the group knows which one waselected. This value is exposed in status variables:

mysql> show status like 'group_replication_primary_member';+----------------------------------+--------------------------------------+| Variable_name | Value |+----------------------------------+--------------------------------------+| group_replication_primary_member | 28a4e51f-860e-11e6-bdc4-08002718d305 |+----------------------------------+--------------------------------------+

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

161 / 191

Page 162: MySQL Group Replication - HandsOn Tutorial

Who's the Primary Master ?As the Primary Master is elected, all nodes part of the group knows which one waselected. This value is exposed in status variables:

mysql> show status like 'group_replication_primary_member';+----------------------------------+--------------------------------------+| Variable_name | Value |+----------------------------------+--------------------------------------+| group_replication_primary_member | 28a4e51f-860e-11e6-bdc4-08002718d305 |+----------------------------------+--------------------------------------+

mysql> select member_host as "primary master" from performance_schema.global_status join performance_schema.replication_group_members where variable_name = 'group_replication_primary_member' and member_id=variable_value;+---------------+| primary master|+---------------+| mysql3 |+---------------+

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

162 / 191

Page 163: MySQL Group Replication - HandsOn Tutorial

get more info

Monitoring

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

163 / 191

Page 164: MySQL Group Replication - HandsOn Tutorial

Performance SchemaGroup Replication uses Performance_Schema to expose status

mysql3> SELECT * FROM performance_schema.replication_group_members\G *************************** 1. row *************************** CHANNEL_NAME: group_replication_applier MEMBER_ID: 00db47c7-3e23-11e6-afd4-08002774c31b MEMBER_HOST: mysql3.localdomain MEMBER_PORT: 3306 MEMBER_STATE: ONLINE

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

164 / 191

Page 165: MySQL Group Replication - HandsOn Tutorial

Performance SchemaGroup Replication uses Performance_Schema to expose status

mysql3> SELECT * FROM performance_schema.replication_group_members\G *************************** 1. row *************************** CHANNEL_NAME: group_replication_applier MEMBER_ID: 00db47c7-3e23-11e6-afd4-08002774c31b MEMBER_HOST: mysql3.localdomain MEMBER_PORT: 3306 MEMBER_STATE: ONLINE

mysql3> SELECT * FROM performance_schema.replication_connection_status\G *************************** 1. row *************************** CHANNEL_NAME: group_replication_applier GROUP_NAME: afb80f36-2bff-11e6-84e0-0800277dd3bf SOURCE_UUID: afb80f36-2bff-11e6-84e0-0800277dd3bf THREAD_ID: NULL SERVICE_STATE: ON COUNT_RECEIVED_HEARTBEATS: 0 LAST_HEARTBEAT_TIMESTAMP: 0000-00-00 00:00:00 RECEIVED_TRANSACTION_SET: afb80f36-2bff-11e6-84e0-0800277dd3bf:1-2 LAST_ERROR_NUMBER: 0 LAST_ERROR_MESSAGE: LAST_ERROR_TIMESTAMP: 0000-00-00 00:00:00

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

165 / 191

Page 166: MySQL Group Replication - HandsOn Tutorial

Member StateThese are the different possible state for a node member:

ONLINE

OFFLINE

RECOVERING

ERROR: when a node is leaving but the plugin was not instructed to stopUNREACHABLE

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

166 / 191

Page 167: MySQL Group Replication - HandsOn Tutorial

Status information & metrics

Membersmysql> SELECT * FROM performance_schema.replication_group_members\G

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

167 / 191

Page 168: MySQL Group Replication - HandsOn Tutorial

Status information & metrics

Membersmysql> SELECT * FROM performance_schema.replication_group_members\G

*************************** 1. row *************************** CHANNEL_NAME: group_replication_applier MEMBER_ID: 00db47c7-3e23-11e6-afd4-08002774c31b MEMBER_HOST: mysql3.localdomain MEMBER_PORT: 3306 MEMBER_STATE: ONLINE *************************** 2. row *************************** CHANNEL_NAME: group_replication_applier MEMBER_ID: e1544c9d-4451-11e6-9f5a-08002774c31b MEMBER_HOST: mysql4.localdomain.localdomain MEMBER_PORT: 3306 MEMBER_STATE: ONLINE

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

168 / 191

Page 169: MySQL Group Replication - HandsOn Tutorial

Status information & metrics

Connectionsmysql> SELECT * FROM performance_schema.replication_connection_status\G

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

169 / 191

Page 170: MySQL Group Replication - HandsOn Tutorial

Status information & metrics

Connectionsmysql> SELECT * FROM performance_schema.replication_connection_status\G

*************************** 1. row *************************** CHANNEL_NAME: group_replication_applier GROUP_NAME: afb80f36-2bff-11e6-84e0-0800277dd3bf SOURCE_UUID: afb80f36-2bff-11e6-84e0-0800277dd3bf THREAD_ID: NULL SERVICE_STATE: ON COUNT_RECEIVED_HEARTBEATS: 0 LAST_HEARTBEAT_TIMESTAMP: 0000-00-00 00:00:00 RECEIVED_TRANSACTION_SET: 5de4400b-3dd7-11e6-8a71-08002774c31b:1-814089, afb80f36-2bff-11e6-84e0-0800277dd3bf:1-2834 LAST_ERROR_NUMBER: 0 LAST_ERROR_MESSAGE: LAST_ERROR_TIMESTAMP: 0000-00-00 00:00:00 *************************** 2. row *************************** CHANNEL_NAME: group_replication_recovery GROUP_NAME: SOURCE_UUID: THREAD_ID: NULL SERVICE_STATE: OFF

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

170 / 191

Page 171: MySQL Group Replication - HandsOn Tutorial

Status information & metrics

Local node status mysql> select * from performance_schema.replication_group_member_stats\G

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

171 / 191

Page 172: MySQL Group Replication - HandsOn Tutorial

Status information & metrics

Local node status mysql> select * from performance_schema.replication_group_member_stats\G

*************************** 1. row *************************** CHANNEL_NAME: group_replication_applier VIEW_ID: 14679667214442885:4 MEMBER_ID: e1544c9d-4451-11e6-9f5a-08002774c31b COUNT_TRANSACTIONS_IN_QUEUE: 0 COUNT_TRANSACTIONS_CHECKED: 5961 COUNT_CONFLICTS_DETECTED: 0 COUNT_TRANSACTIONS_ROWS_VALIDATING: 0 TRANSACTIONS_COMMITTED_ALL_MEMBERS: 5de4400b-3dd7-11e6-8a71-08002774c31b:1-814089, afb80f36-2bff-11e6-84e0-0800277dd3bf:1-5718 LAST_CONFLICT_FREE_TRANSACTION: afb80f36-2bff-11e6-84e0-0800277dd3bf:5718

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

172 / 191

Page 173: MySQL Group Replication - HandsOn Tutorial

Performance_SchemaYou can find GR information in the following Performance_Schema tables:

replication_applier_con�guration

replication_applier_status

replication_applier_status_by_worker

replication_connection_con�guration

replication_connection_status

replication_group_member_stats

replication_group_members

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

173 / 191

Page 174: MySQL Group Replication - HandsOn Tutorial

Status during recovery mysql> SHOW SLAVE STATUS FOR CHANNEL 'group_replication_recovery'\G

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

174 / 191

Page 175: MySQL Group Replication - HandsOn Tutorial

Status during recovery mysql> SHOW SLAVE STATUS FOR CHANNEL 'group_replication_recovery'\G

*************************** 1. row *************************** Slave_IO_State: Master_Host: <NULL> Master_User: gr_repl Master_Port: 0 ... Relay_Log_File: mysql4-relay-bin-group_replication_recovery.000001 ... Slave_IO_Running: No Slave_SQL_Running: No ... Executed_Gtid_Set: 5de4400b-3dd7-11e6-8a71-08002774c31b:1-814089, afb80f36-2bff-11e6-84e0-0800277dd3bf:1-5718 ... Channel_Name: group_replication_recovery

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

175 / 191

Page 176: MySQL Group Replication - HandsOn Tutorial

Sys SchemaThe easiest way to detect if a node is a member of the primary component (when thereare partitioning of your nodes due to network issues for example) and therefore a validcandidate for routing queries to it, is to use the sys table.

Additional information for sys can be downloaded athttps://github.com/lefred/mysql_gr_routing_check/blob/master/addition_to_sys.sql

On the primary node:

[mysql3 ~]# mysql < /tmp/gr_addition_to_sys.sql

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

176 / 191

Page 177: MySQL Group Replication - HandsOn Tutorial

Sys SchemaIs this node part of PRIMARY Partition:

mysql3> SELECT sys.gr_member_in_primary_partition();+------------------------------------+| sys.gr_node_in_primary_partition() |+------------------------------------+| YES |+------------------------------------+

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

177 / 191

Page 178: MySQL Group Replication - HandsOn Tutorial

Sys SchemaIs this node part of PRIMARY Partition:

mysql3> SELECT sys.gr_member_in_primary_partition();+------------------------------------+| sys.gr_node_in_primary_partition() |+------------------------------------+| YES |+------------------------------------+

To use as healthcheck:

mysql3> SELECT * FROM sys.gr_member_routing_candidate_status;+------------------+-----------+---------------------+----------------------+| viable_candidate | read_only | transactions_behind | transactions_to_cert |+------------------+-----------+---------------------+----------------------+| YES | YES | 0 | 0 |+------------------+-----------+---------------------+----------------------+

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

178 / 191

Page 179: MySQL Group Replication - HandsOn Tutorial

Sys Schema - Heath CheckOn one of the non Primary nodes, run the following command:

mysql-sql> �ush tables with read lock;

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

179 / 191

Page 180: MySQL Group Replication - HandsOn Tutorial

Sys Schema - Heath CheckOn one of the non Primary nodes, run the following command:

mysql-sql> �ush tables with read lock;

Now you can verify what the healthcheck exposes to you:

mysql-sql> SELECT * FROM sys.gr_member_routing_candidate_status;+------------------+-----------+---------------------+----------------------+| viable_candidate | read_only | transactions_behind | transactions_to_cert |+------------------+-----------+---------------------+----------------------+| YES | YES | 950 | 0 |+------------------+-----------+---------------------+----------------------+

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

180 / 191

Page 181: MySQL Group Replication - HandsOn Tutorial

Sys Schema - Heath CheckOn one of the non Primary nodes, run the following command:

mysql-sql> �ush tables with read lock;

Now you can verify what the healthcheck exposes to you:

mysql-sql> SELECT * FROM sys.gr_member_routing_candidate_status;+------------------+-----------+---------------------+----------------------+| viable_candidate | read_only | transactions_behind | transactions_to_cert |+------------------+-----------+---------------------+----------------------+| YES | YES | 950 | 0 |+------------------+-----------+---------------------+----------------------+

mysql-sql> UNLOCK tables;

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

181 / 191

Page 182: MySQL Group Replication - HandsOn Tutorial

application interaction

MySQL Router

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

182 / 191

Page 183: MySQL Group Replication - HandsOn Tutorial

MySQL RouterWe will now use mysqlrouter between our application and the cluster.

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

183 / 191

Page 184: MySQL Group Replication - HandsOn Tutorial

MySQL Router (2)Configure MySQL Router (bootstrap it using an instance):

[mysql2 ~]# mysqlrouter --bootstrap mysql2:3306Please enter the administrative MASTER key for the MySQL InnoDB cluster: MySQL Router has now been con�gured for the InnoDB cluster 'plam'.

The following connection information can be used to connect to the cluster.

Classic MySQL protocol connections to cluster 'plam':- Read/Write Connections: localhost:6446- Read/Only Connections: localhost:6447

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

184 / 191

Page 185: MySQL Group Replication - HandsOn Tutorial

MySQL Router (3)Now let's copy the configuration to mysql1 (our app server) and modify it to listen toport 3306:

[mysql2 ~]# scp /etc/mysqlrouter/mysqlrouter.conf mysql1:/etc/mysqlrouter/

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

185 / 191

Page 186: MySQL Group Replication - HandsOn Tutorial

MySQL Router (3)Now let's copy the configuration to mysql1 (our app server) and modify it to listen toport 3306:

[mysql2 ~]# scp /etc/mysqlrouter/mysqlrouter.conf mysql1:/etc/mysqlrouter/

[routing:default_rw]-bind_port=6446+bind_port=3306+bind_address=mysql1

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

186 / 191

Page 187: MySQL Group Replication - HandsOn Tutorial

MySQL Router (3)Now let's copy the configuration to mysql1 (our app server) and modify it to listen toport 3306:

[mysql2 ~]# scp /etc/mysqlrouter/mysqlrouter.conf mysql1:/etc/mysqlrouter/

[routing:default_rw]-bind_port=6446+bind_port=3306+bind_address=mysql1

We can stop mysqld on mysql1 and start mysqlrouter into a screen session:

[mysql1 ~]# systemctl stop mysqld[mysql1 ~]# mysqlrouter

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

187 / 191

Page 188: MySQL Group Replication - HandsOn Tutorial

MySQL Router (4)Now we can point the application to the router:

[mysql1 ~]# run_app.sh mysql1

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

188 / 191

Page 189: MySQL Group Replication - HandsOn Tutorial

MySQL Router (4)Now we can point the application to the router:

[mysql1 ~]# run_app.sh mysql1

Check app and kill mysqld on mysql3 (the Primary Master R/W node) !

[mysql3 ~]# kill -9 $(pidof mysqld)

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

189 / 191

Page 190: MySQL Group Replication - HandsOn Tutorial

MySQL Router (4)Now we can point the application to the router:

[mysql1 ~]# run_app.sh mysql1

Check app and kill mysqld on mysql3 (the Primary Master R/W node) !

[mysql3 ~]# kill -9 $(pidof mysqld)

mysql> select member_host as "primary" from performance_schema.global_status join performance_schema.replication_group_members where variable_name = 'group_replication_primary_member' and member_id=variable_value;+---------+| primary |+---------+| mysql4 |+---------+

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

190 / 191

Page 191: MySQL Group Replication - HandsOn Tutorial

Thank you !

Questions ?

Copyright @ 2016 Oracle and/or its affiliates. All rights reserved.

191 / 191