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
+33-19Lines changed: 33 additions & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
-
title: Deploy Service Fabric node-types Managed Data disks
3
-
description: Learn how to create and deploy Service fabric node-types with attached Managed data disks
2
+
title: Deploy Service Fabric nodetypes with managed data disks
3
+
description: Learn how to create and deploy Service Fabric nodetypes with attached managed data disks.
4
4
author: craftyhouse
5
5
6
6
ms.topic: conceptual
@@ -9,29 +9,34 @@ ms.author: micraft
9
9
10
10
---
11
11
12
-
# Deploy an Azure Service Fabric cluster node-type with Managed data disks(Preview)
12
+
# Deploy an Azure Service Fabric cluster nodetype with managed data disks (preview)
13
13
14
14
>[!NOTE]
15
-
> Support for Managed Data disks is only in Preview right now, and should not be used with Production workloads.
15
+
> Support for managed data disks is only in preview right now and should not be used with production workloads.
16
16
17
17
18
-
Service Fabric node types by default use the temporary disk on each VM in the underlying virtual machine scale set for data storage. However, since the temporary disk is not persistent, and the size of the temporary disk is bound to a given VM SKU, that can be too restrictive for some scenarios. With Azure Managed Disks customers have a persistent data disk they can specify the size and performance on that will be used for a node-type, separately from a VM SKU. The following document provides steps to use native support from Service fabric to configure and use Azure Managed Disks as the default data path. Service Fabric will automatically configure Azure Managed Disks on node type creation and handle situations where VMs or the virtual machine scale set is reimaged.
18
+
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
19
20
-
* Required minimum disk size for the managed data disk is 50 GB.
21
-
* In scenarios where more than one managed data disk is attached, customer needs to manage the data disks on their own.
20
+
This article provides the steps for how to use native support from Service Fabric to configure and use managed data disks as the default data path. Service Fabric will automatically configure managed data disks at node type creation and handle situations where VMs or the virtual machine scale set is reimaged.
22
21
23
-
## Configuring virtual machine scale set to use managed data disks in Service fabric
24
-
To use Azure Managed Disks on a node type, configure the underlying virtual machine scale set resource with the following:
22
+
## Prerequisites
23
+
24
+
* 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.
26
+
27
+
## Configure the virtual machine scale set to use managed data disks in Service Fabric
28
+
To use managed data disks on a node type, configure the underlying virtual machine scale set resource with the following:
25
29
26
30
* Add a managed disk in data disks section of the template for the virtual machine scale set.
27
-
* Update the Service fabric extension with following settings:
28
-
* For Windows - **useManagedDataDisk: true** and **dataPath: 'K:\\\\SvcFab'** . Note, the drive letter "K" is just a representation, it can be any drive Letter lexicographically greater than all the drive letter present in the virtual machine scale set SKU.
29
-
* For Linux - **useManagedDataDisk:true** and **dataPath: '\mnt\sfdataroot'**.
31
+
* Update the Service Fabric extension with following settings:
32
+
* 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
+
* For Linux: **useManagedDataDisk:true** and **dataPath: '\mnt\sfdataroot'**.
30
34
31
35
>[!NOTE]
32
-
> Support for Managed Data disks for Linux Service Fabric clusters is currently not available.
36
+
> Support for managed data disks for Linux Service Fabric clusters is currently not available.
37
+
38
+
Here's an Azure Resource Manager template for a Service Fabric extension:
33
39
34
-
Service Fabric Extension Azure Resource Manager template
0 commit comments