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/cost-management-billing/reservations/instance-size-flexibility.md
+76Lines changed: 76 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -85,6 +85,82 @@ The ISF ratio information is found in the API response within each catalog item'
85
85
-`ReservationsAutofitGroup` - Contains the flexibility group name
86
86
-`ReservationsAutofitRatio` - Contains the ratio value for that SKU
87
87
88
+
## Normalize ISF ratios
89
+
90
+
The raw ISF ratios from the API and powershell don't always start at `1` for the smallest SKU in a group. For example, the `BS Series` group starts at `0.25` and the `Ddsv5 Series` starts at `2`. To make ratios easier to compare, you can normalize them so the smallest SKU in each flexibility group has a ratio of `1`.
91
+
92
+
```powershell
93
+
# Function to normalize ISF ratios so the smallest SKU in each group = 1
| ArmSkuName | Original Ratio | Normalized Ratio |
134
+
|---|---|---|
135
+
| Standard\_B1ls | 0.25 | 1 |
136
+
| Standard\_B1s | 0.5 | 2 |
137
+
| Standard\_B2s | 2 | 8 |
138
+
139
+
**Ddsv5 Series**
140
+
141
+
| ArmSkuName | Original Ratio | Normalized Ratio |
142
+
|---|---|---|
143
+
| Standard\_D2ds\_v5 | 2 | 1 |
144
+
| Standard\_D4ds\_v5 | 4 | 2 |
145
+
| Standard\_D8ds\_v5 | 8 | 4 |
146
+
| Standard\_D16ds\_v5 | 16 | 8 |
147
+
| Standard\_D32ds\_v5 | 32 | 16 |
148
+
| Standard\_D48ds\_v5 | 48 | 24 |
149
+
| Standard\_D64ds\_v5 | 64 | 32 |
150
+
| Standard\_D96ds\_v5 | 96 | 48 |
151
+
152
+
#### Normalized CSV file structure
153
+
154
+
| Column | Description |
155
+
|---|---|
156
+
|`InstanceSizeFlexibilityGroup`| The flexibility group name |
157
+
|`ArmSkuName`| The Azure Resource Manager SKU name |
158
+
|`Ratio`| The normalized ratio (smallest SKU in each group = 1) |
159
+
160
+
> [!NOTE]
161
+
> After normalization, the ratios remain proportional within each group. A normalized ratio of 2 means the SKU consumes twice the reservation units of the smallest SKU in that group.
0 commit comments