Skip to content

Commit 4535994

Browse files
Merge pull request #165019 from roygara/netNote
Adding more info to planning guide and next steps for troubleshooting
2 parents 81cc161 + 0bae25a commit 4535994

File tree

7 files changed

+29
-12
lines changed

7 files changed

+29
-12
lines changed

articles/virtual-machines/disks-pools-deploy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.subservice: disks
1010
---
1111
# Deploy a disk pool (preview)
1212

13-
This article covers how to deploy and configure a disk pool (preview). Before deploying a disk pool, read the [conceptual](disks-pools.md) and [planning](disks-pools-planning.md) articles.
13+
This article covers how to deploy and configure an Azure disk pool (preview). Before deploying a disk pool, read the [conceptual](disks-pools.md) and [planning](disks-pools-planning.md) articles.
1414

1515
In order for a disk pool to work correctly, you must complete the following steps:
1616
- Register your subscription for the preview.

articles/virtual-machines/disks-pools-deprovision.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.subservice: disks
1111

1212
# Deprovision an Azure disk pool (preview)
1313

14-
This article covers the deletion process for a disk pool (preview) and how to disable iSCSI support.
14+
This article covers the deletion process for an Azure disk pool (preview) and how to disable iSCSI support.
1515

1616
## Stop a disk pool
1717

articles/virtual-machines/disks-pools-manage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.subservice: disks
1111

1212
# Manage a disk pool (preview)
1313

14-
Once you've deployed a disk pool (preview), there are two management actions available to you. You can:
14+
Once you've deployed an Azure disk pool (preview), there are two management actions available to you. You can:
1515
- Add a disk to a disk pool
1616
- Disable iSCSI support on a disk
1717

articles/virtual-machines/disks-pools-move-resource.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.subservice: disks
1111

1212
# Move a disk pool (preview) to a different subscription
1313

14-
Moving a disk pool (preview) involves moving the disk pool itself, the disks contained in the disk pool, the disk pool's managed resource group, and all the resources contained in the managed resource group. Currently, Azure doesn't support moving multiple resource groups to another subscription at once.
14+
Moving an Azure disk pool (preview) involves moving the disk pool itself, the disks contained in the disk pool, the disk pool's managed resource group, and all the resources contained in the managed resource group. Currently, Azure doesn't support moving multiple resource groups to another subscription at once.
1515

1616
- Export the template of your existing disk pool.
1717
- Delete the old disk pool.

articles/virtual-machines/disks-pools-planning.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.subservice: disks
1111

1212
# Disk pools (preview) planning guide
1313

14-
It's important to understand the performance requirements of your workload before you deploy a disk pool. Determining your requirements in advance allows you to get the most performance out of your disk pool. The performance of a disk pool is determined by three main factors: The disk pool's scalability target, the scalability targets of individual disks contained in the disk pool, and the networking connection between the client machines to the disk pool. Adjusting these three factors will tweak the performance you get from a disk pool.
14+
It's important to understand the performance requirements of your workload before you deploy an Azure disk pool (preview). Determining your requirements in advance allows you to get the most performance out of your disk pool. The performance of a disk pool is determined by three main factors: The disk pool's scalability target, the scalability targets of individual disks contained in the disk pool, and the networking connection between the client machines to the disk pool. Adjusting these three factors will tweak the performance you get from a disk pool.
1515

1616
## Optimize for low latency
1717

@@ -45,7 +45,19 @@ Refer to the [Networking planning checklist for Azure VMware Solution](../azure-
4545

4646
The following example should give you an idea of how the different performance factors work together:
4747

48-
As an example, if we added two 1-TiB premium SSDs (P30, with a provisioned target of 5000 IOPS and 200 Mbps) into a disk pool, we could achieve 2 x 5000 = 10,000 IOPS but our throughput would be capped at 384 MBps by the disk pool. To exceed this 384-MBps limit, we can deploy more disk pools to scale out for extra throughput.
48+
As an example, if we added two 1-TiB premium SSDs (P30, with a provisioned target of 5000 IOPS and 200 Mbps) into a disk pool, we could achieve 2 x 5000 = 10,000 IOPS but our throughput would be capped at 384 MBps by the disk pool. To exceed this 384-MBps limit, we can deploy more disk pools to scale out for extra throughput. The throughput of your network will limit the effectiveness of scaling out.
49+
50+
## Availability
51+
52+
Disk pools are currently in preview, and shouldn't be used for production workloads.
53+
54+
If your disk pool becomes inaccessible to your Azure VMware Solution cloud for any reason, you will experience the following:
55+
56+
- All datastores associated to the disk pool will no longer be accessible.
57+
- All VMware VMs hosted in this Azure VMware Solution cloud what is using the impacted datastores will be in an unhealthy state.
58+
- The health of clusters in this Azure VMware Solution cloud won't be impacted, except for one operation: You won't be able to place a host into maintenance mode. Azure VMware Solution will handle this failure and attempt recovery by disconnecting the impacted datastores.
59+
60+
If you enter this state, follow these [steps](disks-pools-troubleshoot.md#recover-a-disk-pool-or-an-iscsi-target) to recover your disk pool.
4961

5062
## Next steps
5163

articles/virtual-machines/disks-pools-troubleshoot.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,20 @@ ms.subservice: disks
1111

1212
# Troubleshoot Azure disk pools (preview)
1313

14-
This article lists some common failure codes related to Azure disk pools. It also provides possible resolutions and some clarity on disk pool statuses.
14+
This article lists some common failure codes related to Azure disk pools (preview). It also provides possible resolutions and some clarity on disk pool statuses.
1515

1616
## Disk pool status
1717

1818
Disk pools and iSCSI targets each have four states: **Unknown**, **Running**, **Updating**, and **Stopped (deallocated)**.
1919

2020
**Unknown** means that the resource is in a bad or unknown state. To attempt recovery, perform an update operation on the resource (such as adding or removing disks/LUNS) or delete and redeploy your disk pool.
2121

22+
**Running** means the resource is running and in a healthy state.
23+
2224
**Updating** means that the resource is going through an update. This usually happens during deployment or when applying an update like adding disks or LUNs.
2325

26+
**Stopped (deallocated)** means that the resource is stopped and its underlying resources have been deallocated. You can restart the resource to recover your disk pool or iSCSI target.
27+
2428
## Recover a disk pool or an iSCSI target
2529

2630
First, stop the disk pool and restart it. Then check the status of the disk pool and the iSCSI target. If they have recovered, then any Azure VMware clusters connected to the disk pool will recover automatically unless the disk pool has been inaccessible for more than 24 hours. If it has been more than 24 hours, then you need to contact Azure support to forcibly disconnect the inaccessible datastores associated with the disk pool. After that, you can reconnect the VS clusters to the disk pool and configure the datastores.
@@ -44,4 +48,8 @@ If the disk pool didn't recover after this process, contact Azure support and pr
4448
|---------|---------|
4549
|GoalStateApplicationError |Occurs when the iSCSI target configuration is invalid and cannot be applied to the disk pool. Retry the deployment. If the issue persists, contact Azure support and provide the tracking ID of the error. |
4650
|GoalStateApplicationTimeoutError |Occurs when the disk pool infrastructure stops responding to the resource provider. Retry the deployment. If the issue persists, contact Azure support and provide the tracking ID of the error. |
47-
|OngoingOperationInProgress |An ongoing operation is in-progress on the disk pool. Wait until that operation completes, then retry deployment. |
51+
|OngoingOperationInProgress |An ongoing operation is in-progress on the disk pool. Wait until that operation completes, then retry deployment. |
52+
53+
## Next steps
54+
55+
[Manage a disk pool (preview)](disks-pools-manage.md)

articles/virtual-machines/disks-pools.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.custom: references_regions
1212

1313
# Azure disk pools (preview)
1414

15-
A disk pool (preview) is a top-level Azure resource that allows your applications and workloads to access all disks under one single endpoint. A disk pool can expose an Internet Small Computer Systems Interface (iSCSI) target to enable data access to disks inside this pool over iSCSI. Each disk pool can have one iSCSI target and each disk can be exposed as an iSCSI LUN. You can connect disks under the disk pool to Azure VMware Solution hosts as datastores. This allows you to scale your storage independent of your Azure VMware Solution hosts. Once a datastore is configured, you can create volumes on it and attach them to your VMware instances.
15+
An Azure disk pool (preview) is a top-level Azure resource that allows your applications and workloads to access all disks under one single endpoint. A disk pool can expose an Internet Small Computer Systems Interface (iSCSI) target to enable data access to disks inside this pool over iSCSI. Each disk pool can have one iSCSI target and each disk can be exposed as an iSCSI LUN. You can connect disks under the disk pool to Azure VMware Solution hosts as datastores. This allows you to scale your storage independent of your Azure VMware Solution hosts. Once a datastore is configured, you can create volumes on it and attach them to your VMware instances.
1616

1717
## How it works
1818

@@ -37,11 +37,8 @@ Disk pools are currently available in the following regions:
3737
- Canada Central
3838
- East US
3939
- West US 2
40-
- Central US
4140
- Japan East
4241
- North Europe
43-
- West Europe
44-
- UK South
4542

4643

4744
## Billing

0 commit comments

Comments
 (0)