You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/service-fabric/service-fabric-managed-disk.md
+7-19Lines changed: 7 additions & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,11 +9,7 @@ ms.author: micraft
9
9
10
10
---
11
11
12
-
# Deploy an Azure Service Fabric cluster node type with managed data disks (preview)
13
-
14
-
>[!NOTE]
15
-
> Support for managed data disks is only in preview right now and should not be used with production workloads.
16
-
12
+
# Deploy an Azure Service Fabric cluster node type with managed data disks
17
13
18
14
Azure Service Fabric node types, by default, use the temporary disk on each virtual machine (VM) in the underlying virtual machine scale set for data storage. However, because the temporary disk is not persistent, and the size of the temporary disk is bound to a given VM SKU, this can be too restrictive for some scenarios.
19
15
@@ -22,19 +18,17 @@ This article provides the steps for how to use native support from Service Fabri
22
18
## Prerequisites
23
19
24
20
* The required minimum disk size for the managed data disk is 50 GB.
25
-
* In scenarios where more than one managed data disk is attached, the customer needs to manage the data disks themselves.
21
+
* Data disk drive letter should be set to character lexicographically greater than all drives present in the virtual machine scale set SKU.
22
+
* Only one managed data disk per VM is supported. For scenarios involving more than 1 data disks, user needs to manage the data disks on their own.
26
23
27
24
## Configure the virtual machine scale set to use managed data disks in Service Fabric
28
25
To use managed data disks on a node type, configure the underlying virtual machine scale set resource with the following:
29
26
30
27
* Add a managed disk in data disks section of the template for the virtual machine scale set.
31
-
* Update the Service Fabric extension with following settings:
28
+
* Update the Service Fabric extension for the virtual machine scale set with following settings:
32
29
* For Windows: **useManagedDataDisk: true** and **dataPath: 'K:\\\\SvcFab'**. Note that drive K is just a representation. You can use any drive letter lexicographically greater than all the drive letters present in the virtual machine scale set SKU.
33
30
* For Linux: **useManagedDataDisk:true** and **dataPath: '\mnt\sfdataroot'**.
34
31
35
-
>[!NOTE]
36
-
> Support for managed data disks for Linux Service Fabric clusters is currently not available.
37
-
38
32
Here's an Azure Resource Manager template for a Service Fabric extension:
39
33
40
34
```json
@@ -83,17 +77,11 @@ Here's an Azure Resource Manager template for a Service Fabric extension:
83
77
```
84
78
85
79
## Migrate to using managed data disks for Service Fabric node types
86
-
87
-
For all migration scenarios:
80
+
For all migration scenarios, new node types with managed data disks need to be added. Existing node types cannot be converted to use managed data disks.
88
81
89
82
1. Add a new node type that's configured to use managed data disks as specified earlier.
90
-
91
-
1. Migrate any required workloads to the new node type.
92
-
93
-
1. Disable and remove the old node type from the cluster.
94
-
95
-
96
-
83
+
2. Migrate any required workloads to the new node type.
84
+
3. Disable and remove the old node type from the cluster.
0 commit comments