Total Visitors

From f5021b3775fbdd67492ac819967f66fbd6d5e82f Mon Sep 17 00:00:00 2001
From: Timna Brown <24630902+brown9804@users.noreply.github.com>
Date: Mon, 17 Mar 2025 09:11:06 -0600
Subject: [PATCH 09/12] format
---
0_Azure/1_AzureData/1_Databases/demos/9_MySQL_BU_DR.md | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/0_Azure/1_AzureData/1_Databases/demos/9_MySQL_BU_DR.md b/0_Azure/1_AzureData/1_Databases/demos/9_MySQL_BU_DR.md
index 996ccb210..17a403f23 100644
--- a/0_Azure/1_AzureData/1_Databases/demos/9_MySQL_BU_DR.md
+++ b/0_Azure/1_AzureData/1_Databases/demos/9_MySQL_BU_DR.md
@@ -54,11 +54,9 @@ https://github.com/user-attachments/assets/1c6efd8a-987a-46ac-a81d-6d4ae74b07fd
https://github.com/user-attachments/assets/769fa81a-450f-4cd9-a4d9-8f4f227c01c9
5. **Backup Redundancy**:
- - Below the retention slider, you will see options for backup redundancy:
+ - Below the retention slider, you will see options for backup redundancy, select the desired redundancy option based on your requirements:
- **Locally-redundant**: Keeps multiple copies of your data within a single region.
- **Geo-redundant**: Replicates data to a secondary region to ensure durability and availability.
- - **Read-access geo-redundant**: Provides read access to the replicated data in the secondary region.
- - Select the desired redundancy option based on your requirements.
https://github.com/user-attachments/assets/ea53958a-ca3e-4100-a527-d0e46cdb992e
From 254e6085ea8a973053b2b5d335537e184260721a Mon Sep 17 00:00:00 2001
From: Timna Brown <24630902+brown9804@users.noreply.github.com>
Date: Mon, 17 Mar 2025 09:13:23 -0600
Subject: [PATCH 10/12] + content list
---
.../1_AzureData/1_Databases/demos/9_MySQL_BU_DR.md | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/0_Azure/1_AzureData/1_Databases/demos/9_MySQL_BU_DR.md b/0_Azure/1_AzureData/1_Databases/demos/9_MySQL_BU_DR.md
index 17a403f23..260ca88db 100644
--- a/0_Azure/1_AzureData/1_Databases/demos/9_MySQL_BU_DR.md
+++ b/0_Azure/1_AzureData/1_Databases/demos/9_MySQL_BU_DR.md
@@ -20,6 +20,19 @@ Last updated: 2025-03-17
+## Content
+
+- [Backup BU for MySQL on Azure](#backup-bu-for-mysql-on-azure)
+ - [Automated Backups](#automated-backups)
+ - [Change Backups Retention Policy and Redundancy](#change-backups-retention-policy-and-redundancy)
+ - [Point-in-Time Restore PITR](#point-in-time-restore-pitr)
+ - [Manual Backups](#manual-backups)
+ - [On-Demand Backups](#on-demand-backups)
+ - [Exporting Data](#exporting-data)
+ - [Backup Storage](#backup-storage)
+ - [Backup Redundancy Option](#backup-redundancy-option)
+- [Disaster Recovery DR for MySQL on Azure](#disaster-recovery-dr-for-mysql-on-azure)
+
> [!NOTE]
> Quick reference on how to create an Azure Database for MySQL Flexible Server:
From feb5da15c46d82fb3462481fbdad98c8c80963f2 Mon Sep 17 00:00:00 2001
From: Timna Brown <24630902+brown9804@users.noreply.github.com>
Date: Mon, 17 Mar 2025 09:23:02 -0600
Subject: [PATCH 11/12] + oerview
---
0_Azure/1_AzureData/1_Databases/demos/9_MySQL_BU_DR.md | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/0_Azure/1_AzureData/1_Databases/demos/9_MySQL_BU_DR.md b/0_Azure/1_AzureData/1_Databases/demos/9_MySQL_BU_DR.md
index 260ca88db..acc97705c 100644
--- a/0_Azure/1_AzureData/1_Databases/demos/9_MySQL_BU_DR.md
+++ b/0_Azure/1_AzureData/1_Databases/demos/9_MySQL_BU_DR.md
@@ -22,6 +22,7 @@ Last updated: 2025-03-17
## Content
+- [Overview](#overview)
- [Backup BU for MySQL on Azure](#backup-bu-for-mysql-on-azure)
- [Automated Backups](#automated-backups)
- [Change Backups Retention Policy and Redundancy](#change-backups-retention-policy-and-redundancy)
@@ -33,11 +34,18 @@ Last updated: 2025-03-17
- [Backup Redundancy Option](#backup-redundancy-option)
- [Disaster Recovery DR for MySQL on Azure](#disaster-recovery-dr-for-mysql-on-azure)
+## Overview
+
> [!NOTE]
> Quick reference on how to create an Azure Database for MySQL Flexible Server:
https://github.com/user-attachments/assets/1c6efd8a-987a-46ac-a81d-6d4ae74b07fd
+| **Feature** | **Description**| **Limit**| **Use Cases**|
+|---------|---------------|--------| -------|
+| **Read Replicas** | Read replicas are copies of the primary MySQL server that are used to offload read operations and improve read scalability. They can be created in the same or different regions and can be promoted to standalone servers in case of a primary server failure. | Up to **10** read replicas can be created per primary server.| - **Scaling Read-Intensive Workloads**: Offload read operations to replicas to improve performance.
- **Disaster Recovery**: Promote replicas to standalone servers in case of primary server failure.
- **Global Distribution**: Improve data access speed by placing replicas closer to users in different regions. |
+| **Manual Backups** | Manual backups are on-demand backups that you can create at any time. These backups capture the current state of the database and are stored in geo-redundant storage (GRS) or locally redundant storage (LRS). | Up to **50** on-demand manual backups can be created per server.| - **Data Protection**: Ensure data protection by creating backups before major changes or updates.
- **Quick Recovery**: Use manual backups as restore points to quickly recover from data corruption or accidental deletions.
- **Compliance**: Maintain backups for compliance and auditing purposes. |
+
## Backup (BU) for MySQL on Azure
> [!IMPORTANT]
From 0a1a644fcc47496881c4750996e03942e1e1e78e Mon Sep 17 00:00:00 2001
From: Timna Brown <24630902+brown9804@users.noreply.github.com>
Date: Mon, 17 Mar 2025 09:23:35 -0600
Subject: [PATCH 12/12] format alignde
---
0_Azure/1_AzureData/1_Databases/demos/9_MySQL_BU_DR.md | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/0_Azure/1_AzureData/1_Databases/demos/9_MySQL_BU_DR.md b/0_Azure/1_AzureData/1_Databases/demos/9_MySQL_BU_DR.md
index acc97705c..62231499e 100644
--- a/0_Azure/1_AzureData/1_Databases/demos/9_MySQL_BU_DR.md
+++ b/0_Azure/1_AzureData/1_Databases/demos/9_MySQL_BU_DR.md
@@ -36,16 +36,16 @@ Last updated: 2025-03-17
## Overview
-> [!NOTE]
-> Quick reference on how to create an Azure Database for MySQL Flexible Server:
-
-https://github.com/user-attachments/assets/1c6efd8a-987a-46ac-a81d-6d4ae74b07fd
-
| **Feature** | **Description**| **Limit**| **Use Cases**|
|---------|---------------|--------| -------|
| **Read Replicas** | Read replicas are copies of the primary MySQL server that are used to offload read operations and improve read scalability. They can be created in the same or different regions and can be promoted to standalone servers in case of a primary server failure. | Up to **10** read replicas can be created per primary server.| - **Scaling Read-Intensive Workloads**: Offload read operations to replicas to improve performance.
- **Disaster Recovery**: Promote replicas to standalone servers in case of primary server failure.
- **Global Distribution**: Improve data access speed by placing replicas closer to users in different regions. |
| **Manual Backups** | Manual backups are on-demand backups that you can create at any time. These backups capture the current state of the database and are stored in geo-redundant storage (GRS) or locally redundant storage (LRS). | Up to **50** on-demand manual backups can be created per server.| - **Data Protection**: Ensure data protection by creating backups before major changes or updates.
- **Quick Recovery**: Use manual backups as restore points to quickly recover from data corruption or accidental deletions.
- **Compliance**: Maintain backups for compliance and auditing purposes. |
+> [!NOTE]
+> Quick reference on how to create an Azure Database for MySQL Flexible Server:
+
+https://github.com/user-attachments/assets/1c6efd8a-987a-46ac-a81d-6d4ae74b07fd
+
## Backup (BU) for MySQL on Azure
> [!IMPORTANT]