From 41762d6c496e421b5582b109cecbc29131166835 Mon Sep 17 00:00:00 2001 From: Baz <61154071+bazmurphy@users.noreply.github.com> Date: Sat, 24 Aug 2024 16:34:43 +0100 Subject: [PATCH] mysql-cluster minor fixes (#216) * some minor fixes * change master-slave to source-replica * adjustments --- projects/mysql-cluster/README.md | 48 ++++++++++++++++---------------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/projects/mysql-cluster/README.md b/projects/mysql-cluster/README.md index b189872c..93e6a67e 100644 --- a/projects/mysql-cluster/README.md +++ b/projects/mysql-cluster/README.md @@ -19,9 +19,9 @@ Timebox: 2 days ## Project -There are different ways to configure MySQL replication. In this exercise, you will be configuring your servers for primary-replica (or master-slave) replication. +There are different ways to configure MySQL replication. In this exercise, you will be configuring your servers for primary-replica replication. -In this type of replication, the primary server (or the master) takes all the writes and they are automatically replicated onto the replica server (or the slave). This technique is widely used to increase the scalability of the database for read-intensive operations (which is extremely common for the web). In the primary-replica setup, the primary would normally be used for writes and replica (or replicas) for reads only. Even though it's technically possible to use the primary for the reads and the writes, it is impossible to write directly to the replica. +In this type of replication, the primary server (`SOURCE`) takes all the writes and they are automatically replicated onto the replica server (`REPLICA`). This technique is widely used to increase the scalability of the database for read-intensive operations (which is extremely common for the web). In the primary-replica setup, the primary would normally be used for writes and replica (or replicas) for reads only. Even though it's technically possible to use the primary for the reads and the writes, it is impossible to write directly to the replica. Another advantage of using such a replication setup is database resilience. For example, it is recommended to setup primary-replica with one primary and two or three replicas in different availability zones. In the event of one availability zone (or datacenter) going down, the database will continue functioning flawlessly as other replicas will be used for reading. In a different scenario of one replica crashing, it can be replaced while the remaining replicas are serving the reads. Should the primary crash, an operation called a 'fail-over' should be carried out: one replica is promoted to be a primary while another MySQL server is being stood up in place of a broken primary. @@ -46,7 +46,7 @@ Another advantage of using such a replication setup is database resilience. For sudo apt-get install mysql-server ``` - Secure the MySQL installation: - Answer `Y` for everything, and for this exercise choose *LOW* password validation policy) + Answer `Y` for everything, and for this exercise choose *LOW* password validation policy ```bash sudo mysql_secure_installation ``` @@ -70,7 +70,7 @@ Another advantage of using such a replication setup is database resilience. For - Run the following SQL commands: ```sql CREATE USER 'replica_user'@'%' IDENTIFIED BY 'C90L6`!Doe{K'; - GRANT REPLICATION SLAVE ON *.* TO 'replica_user'@'%'; + GRANT REPLICATION REPLICA ON *.* TO 'replica_user'@'%'; FLUSH PRIVILEGES; ``` @@ -116,20 +116,20 @@ Another advantage of using such a replication setup is database resilience. For ``` 4. **Configure Replication** - - Obtain the master status on the primary server: + - Obtain the source status on the primary server: ```sql - SHOW MASTER STATUS; + SHOW SOURCE STATUS; ``` - Note down the `File` and `Position` values, also note down the private instance IP address (e.g. from your AWS console) - On the secondary server, set up the replication: ```sql - CHANGE MASTER TO - MASTER_HOST='', - MASTER_USER='replica_user', - MASTER_PASSWORD='C90L6`!Doe{K', - MASTER_LOG_FILE='', - MASTER_LOG_POS=; - START SLAVE; + CHANGE SOURCE TO + SOURCE_HOST='', + SOURCE_USER='replica_user', + SOURCE_PASSWORD='C90L6`!Doe{K', + SOURCE_LOG_FILE='', + SOURCE_LOG_POS=; + START REPLICA; ``` 5. **Verify Replication** @@ -137,7 +137,7 @@ Another advantage of using such a replication setup is database resilience. For ```sql SHOW REPLICA STATUS\G; ``` - - Ensure `Slave_IO_Running` and `Slave_SQL_Running` are both `Yes`. + - Ensure `Replica_IO_Running` and `Replica_SQL_Running` are both `Yes`. - Something isn't quite right. Can you figure out how to fix this? There may be a few things that need to be fixed. Use `SHOW REPLICA STATUS\G` to find out what is wrong. Can you see the `cyfdb` database on the replica? Keep a log of all commands you are executing on each server while troubleshooting this. ### Task 3: Demonstrate Replication @@ -151,7 +151,7 @@ Another advantage of using such a replication setup is database resilience. For 2. **Verify Data on the Secondary Server** - On the secondary server, query the table: ```sql - SELECT * FROM testdb.users; + SELECT * FROM cyfdb.users; ``` - Verify that the data matches the primary server. - Before you execute the next statement, please write down what result you would expect from it: @@ -190,7 +190,7 @@ We're going to stop the primary server, to simulate some real failure (e.g. hard ``` - Query the table to ensure the new data is inserted: ```sql - SELECT * FROM cyfd.users; + SELECT * FROM cyfdb.users; ``` 4. **Service Location** - Write down your thoughts on how primary and replica can be conveniently located by their clients (e.g. a web application), given the fact that primary may be failed over and replicas replaced at any moment, and the new instances will receive a different IP address. @@ -202,15 +202,15 @@ We're going to stop the primary server, to simulate some real failure (e.g. hard ```bash sudo systemctl start mysql ``` - - On the original primary server, set it up as the slave to the new primary: + - On the original primary server, set it up as the replica to the new primary: ```sql - CHANGE MASTER TO - MASTER_HOST='', - MASTER_USER='replica_user', - MASTER_PASSWORD='C90L6`!Doe{K', - MASTER_LOG_FILE='', - MASTER_LOG_POS=; - START SLAVE; + CHANGE SOURCE TO + SOURCE_HOST='', + SOURCE_USER='replica_user', + SOURCE_PASSWORD='C90L6`!Doe{K', + SOURCE_LOG_FILE='', + SOURCE_LOG_POS=; + START REPLICA; ``` - Check the replica status: ```sql