Skip to content

Commit 6e17061

Browse files
authored
Merge pull request #250103 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents d9c333e + 9f5ae4c commit 6e17061

12 files changed

+89
-59
lines changed

articles/advisor/advisor-reference-reliability-recommendations.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,12 @@ We recommend configuring the Azure Front Door customer certificate secret to ‘
6363
Learn more about [Front Door Profile - SwitchVersionBYOC (Switch Secret version to ‘Latest’ for the Azure Front Door customer certificate)](/azure/frontdoor/standard-premium/how-to-configure-https-custom-domain#certificate-renewal-and-changing-certificate-types).
6464
## Compute
6565

66+
### Migrate Virtual Machines to Availability Zones
67+
68+
By migrating virtual machines to Availability Zones, you can ensure the isolation of your VMs from potential failures in other zones. With this, you can expect enhanced resiliency in your workload by avoiding downtime and business interruptions.
69+
70+
Learn more about [Availability Zones](../reliability/availability-zones-overview.md).
71+
6672
### Enable Backups on your Virtual Machines
6773

6874
Enable backups for your virtual machines and secure your data

articles/azure-arc/data/limitations-managed-instance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ This article describes limitations of Azure Arc-enabled SQL Managed Instance.
3434

3535
- Transactional replication is currently not supported.
3636
- Log shipping is currently blocked.
37-
- Creating a database using SQL Server Management Studio does not work currently. Use the T-SQL command `CREATE DATABASE` to create databases.
37+
- All user databases need to be in a full recovery model because they participate in an always-on-availability group
3838

3939
## Roles and responsibilities
4040

articles/azure-arc/servers/azcmagent-connect.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,23 @@ azcmagent connect [authentication] --subscription-id [subscription] --resource-g
2020
Connect a server using the default login method (interactive browser or device code).
2121

2222
```
23-
azcmagent connect --subscription "Production" --resource-group "HybridServers" --location "eastus"
23+
azcmagent connect --subscription-id "Production" --resource-group "HybridServers" --location "eastus"
24+
```
25+
26+
```
27+
azcmagent connect --subscription-id "Production" --resource-group "HybridServers" --location "eastus" --use-device-code
2428
```
2529

2630
Connect a server using a service principal.
2731

2832
```
29-
azcmagent connect --subscription "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee" --resource-group "HybridServers" --location "australiaeast" --service-principal-id "ID" --service-principal-secret "SECRET" --tenant-id "TENANT"
33+
azcmagent connect --subscription-id "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee" --resource-group "HybridServers" --location "australiaeast" --service-principal-id "ID" --service-principal-secret "SECRET" --tenant-id "TENANT"
3034
```
3135

3236
Connect a server using a private endpoint and device code login method.
3337

3438
```
35-
azcmagent connect --subscription "Production" --resource-group "HybridServers" --location "koreacentral" --use-device-code --private-link-scope "/subscriptions/.../Microsoft.HybridCompute/privateLinkScopes/ScopeName"
39+
azcmagent connect --subscription-id "Production" --resource-group "HybridServers" --location "koreacentral" --use-device-code --private-link-scope "/subscriptions/.../Microsoft.HybridCompute/privateLinkScopes/ScopeName"
3640
```
3741

3842
## Authentication options

articles/azure-cache-for-redis/cache-how-to-premium-persistence.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ You have two options for persistence with Azure Cache for Redis: the _Redis data
3131
- _RDB persistence_ - When you use RDB persistence, Azure Cache for Redis persists a snapshot of your cache in a binary format. The snapshot is saved in an Azure Storage account. The configurable backup frequency determines how often to persist the snapshot. If a catastrophic event occurs that disables both the primary and replica cache, the cache is reconstructed automatically using the most recent snapshot. Learn more about the [advantages](https://redis.io/topics/persistence#rdb-advantages) and [disadvantages](https://redis.io/topics/persistence#rdb-disadvantages) of RDB persistence.
3232
- _AOF persistence_ - When you use AOF persistence, Azure Cache for Redis saves every write operation to a log. The log is saved at least once per second in an Azure Storage account. If a catastrophic event occurs that disables both the primary and replica caches, the cache is reconstructed automatically using the stored write operations. Learn more about the [advantages](https://redis.io/topics/persistence#aof-advantages) and [disadvantages](https://redis.io/topics/persistence#aof-disadvantages) of AOF persistence.
3333

34-
Azure Cache for Redis persistence features are intended to be used to restore data automatically to the same cache after data loss. The RDB/AOF persisted data files can't be imported to a new cache. To move data across caches, use the _Import and Export_ feature. For more information, see [Import and Export data in Azure Cache for Redis](cache-how-to-import-export-data.md).
34+
Azure Cache for Redis persistence features are intended to be used to restore data automatically to the same cache after data loss. The RDB/AOF persisted data files can't be imported to a new cache or the existing cache. To move data across caches, use the _Import and Export_ feature. For more information, see [Import and Export data in Azure Cache for Redis](cache-how-to-import-export-data.md).
3535

3636
To generate any backups of data that can be added to a new cache, you can write automated scripts using PowerShell or CLI that export data periodically.
3737

3838
## Prerequisites and limitations
3939

4040
Persistence features are intended to be used to restore data to the same cache after data loss.
4141

42-
- RDB/AOF persisted data files can't be imported to a new cache. Use the [Import/Export](cache-how-to-import-export-data.md) feature instead.
42+
- RDB/AOF persisted data files can't be imported to a new cache or the existing cache. Use the [Import/Export](cache-how-to-import-export-data.md) feature instead.
4343
- Persistence isn't supported with caches using [passive geo-replication](cache-how-to-geo-replication.md) or [active geo-replication](cache-how-to-active-geo-replication.md).
4444
- On the _Premium_ tier, AOF persistence isn't supported with [multiple replicas](cache-how-to-multi-replicas.md).
4545
- On the _Premium_ tier, data must be persisted to a storage account in the same region as the cache instance.

articles/azure-vmware/enable-sql-azure-hybrid-benefit.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,18 @@ ms.author: jacobjaygbay
55
description: This article shows you how to apply Enable Azure Hybrid Benefit for SQL Server in Azure VMware Solution to your Azure VMware Solution private cloud by configuring a placement policy.
66
ms.topic: how-to
77
ms.service: azure-vmware
8-
ms.date: 02/14/2023
8+
ms.date: 09/01/2023
99
---
1010

1111
# Enable Azure Hybrid Benefit for SQL Server in Azure VMware Solution
1212

13-
In this article, you’ll learn how to configure Azure Hybrid Benefit for SQL Server in an Azure VMware Solution private cloud by configuring a placement policy. The placement policy defines the hosts that are running SQL Server as well as the virtual machines on that host.
13+
In this article, you’ll learn how to configure Azure Hybrid Benefit for SQL Server in an Azure VMware Solution private cloud by configuring a placement policy.
14+
The placement policy defines the hosts that are running SQL Server as well as the virtual machines on that host.
1415

1516
> [!IMPORTANT]
1617
> It is important to note that SQL Server benefits are applied at the host level.
1718
18-
For example, if each host in Azure VMware Solution has 36 cores and you intend to have 2 hosts run SQL Server then the Azure Hybrid Benefit will apply to 72 cores, irrespective of the number of SQL Server instances or other virtual machines are on that host.
19+
For example, if each host in Azure VMware Solution has 36 cores and you intend to have 2 hosts run SQL Server then the Azure Hybrid Benefit will apply to 72 cores, regardless of the number of SQL Server instances or other virtual machines are on that host.
1920

2021
You can also choose to view a video tutorial for configuring Azure Hybrid Benefit for SQL Server in Azure VMware Solution [here](https://www.youtube.com/watch?v=vJIQ1K2KTa0).
2122

@@ -28,12 +29,12 @@ You can also choose to view a video tutorial for configuring Azure Hybrid Benefi
2829
1. Fill in the required fields for creating the placement policy.
2930
1. **Name** – Select the name that identifies this policy.
3031
2. **Type** – Select the type of policy. This type must be a VM-Host affinity rule only.
31-
3. **Azure hybrid benefit** – Select the checkbox to apply the SQL Azure hybrid benefit.
32+
3. **Azure Hybrid Benefit** – Select the checkbox to apply the Azure Hybrid Benefit for SQL Server.
3233
4. **Cluster** – Select the correct cluster. The policy is scoped to host in this cluster only.
3334
5. **Enabled** – Select enabled to apply the policy immediately once created.
3435
:::image type="content" source="media/sql-azure-hybrid-benefit/create-placement-policy.png" alt-text="Diagram that shows how to create a host virtual machine placement policy using the host VM affinity.":::
3536
2. Select the hosts and VMs that will be applied to the VM-Host affinity policy.
36-
1. **Add Hosts** – Select the hosts that will be running SQL. When hosts are replaced, policies are re-created on the new hosts automatically.
37+
1. **Add Hosts** – Select the hosts that will be running SQL Server. When hosts are replaced, policies are re-created on the new hosts automatically.
3738
2. **Add VMs** – Select the VMs that should run on the selected hosts.
3839
3. **Review and Create** the policy.
3940
:::image type="content" source="media/sql-azure-hybrid-benefit/select-policy-host.png" alt-text="Diagram that shows how to create a host virtual machine affinity.":::
@@ -46,8 +47,6 @@ By checking the Azure Hybrid Benefit checkbox in the configuration setting, you
4647

4748
:::image type="content" source="media/sql-azure-hybrid-benefit/placement-policies.png" alt-text="Diagram that shows how to configure virtual machine placement policies.":::
4849

49-
## Next steps
50+
## More information
5051

51-
[Azure Hybrid Benefit](https://azure.microsoft.com/pricing/hybrid-benefit/)
52-
53-
[Attach Azure NetApp Files datastores to Azure VMware Solution hosts](attach-azure-netapp-files-to-azure-vmware-solution-hosts.md)
52+
[Azure Hybrid Benefit](https://azure.microsoft.com/pricing/hybrid-benefit/)

articles/azure-vmware/migrate-sql-server-always-on-cluster.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ ms.service: azure-vmware
88
ms.date: 3/20/2023
99
ms.custom: engagement-fy23
1010
---
11-
# Migrate Microsoft SQL Server Always On cluster to Azure VMware Solution
11+
# Migrate a SQL Server Always On Availability Group to Azure VMware Solution
1212

13-
In this article, you learn how to migrate Microsoft SQL Server Always On Cluster to Azure VMware Solution. For VMware HCX, you can follow the VMware vMotion migration procedure.
13+
In this article, you learn how to migrate a Microsoft SQL Server Always On Availability Group to Azure VMware Solution. For VMware HCX, you can follow the VMware vMotion migration procedure.
1414

1515
:::image type="content" source="media/sql-server-hybrid-benefit/sql-always-on-architecture.png" alt-text="Diagram showing the architecture of Always On SQL Server for Azure VMware Solution." border="false" lightbox="media/sql-server-hybrid-benefit/sql-always-on-architecture.png":::
1616

@@ -64,9 +64,9 @@ If the cluster uses a **File share witness** running on-premises, then the type
6464

6565
For details about configuring and managing the quorum, see [Failover Clustering documentation](/windows-server/failover-clustering/manage-cluster-quorum). For information about deployment of Cloud witness in Azure Blob Storage, see [Manage a cluster quorum for a Failover Cluster](/windows-server/failover-clustering/deploy-cloud-witness).
6666

67-
## Migrate Microsoft SQL Server Always On cluster
67+
## Migrate SQL Server Always On Availability Group
6868

69-
1. Access your Always On cluster with SQL Server Management Studio using administration credentials.
69+
1. Access your Always On Availability Group with SQL Server Management Studio using administration credentials.
7070
- Select your primary replica and open **Availability Group** **Properties**.
7171
:::image type="content" source="media/sql-server-hybrid-benefit/sql-always-on-1.png" alt-text="Diagram showing Always On Availability Group properties." border="false" lightbox="media/sql-server-hybrid-benefit/sql-always-on-1.png":::
7272
- Change **Availability Mode** to **Asynchronous commit** only for the replica to be migrated.

0 commit comments

Comments
 (0)