Skip to content

Commit f35ae6a

Browse files
authored
Update manage-with-powershell.md
Phasing out all occurrences of "automatic failover" and replacing with "service-managed failover" to be more inline with expected behavior.
1 parent 373d383 commit f35ae6a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/cosmos-db/sql/manage-with-powershell.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ The following sections demonstrate how to manage the Azure Cosmos account, inclu
4848

4949
### <a id="create-account"></a> Create an Azure Cosmos account
5050

51-
This command creates an Azure Cosmos DB database account with [multiple regions][distribute-data-globally], [automatic failover](../how-to-manage-database-account.md#automatic-failover) and bounded-staleness [consistency policy](../consistency-levels.md).
51+
This command creates an Azure Cosmos DB database account with [multiple regions][distribute-data-globally], [service-managed failover](../how-to-manage-database-account.md#automatic-failover) and bounded-staleness [consistency policy](../consistency-levels.md).
5252

5353
```azurepowershell-interactive
5454
$resourceGroupName = "myResourceGroup"
@@ -177,7 +177,7 @@ $accountName = "mycosmosaccount"
177177
$enableAutomaticFailover = $false
178178
$enableMultiMaster = $true
179179
180-
# First disable automatic failover - cannot have both automatic
180+
# First disable service-managed failover - cannot have both service-managed
181181
# failover and multi-region writes on an account
182182
Update-AzCosmosDBAccount `
183183
-ResourceGroupName $resourceGroupName `
@@ -266,7 +266,7 @@ New-AzCosmosDBAccountKey `
266266
-KeyKind $keyKind
267267
```
268268

269-
### <a id="enable-automatic-failover"></a> Enable automatic failover
269+
### <a id="enable-automatic-failover"></a> Enable service-managed failover
270270

271271
The following command sets a Cosmos DB account to fail over automatically to its secondary region should the primary region become unavailable.
272272

@@ -283,7 +283,7 @@ Update-AzCosmosDBAccount `
283283
-Name $accountName `
284284
-EnableMultipleWriteLocations:$enableMultiMaster
285285
286-
# Now enable automatic failover
286+
# Now enable service-managed failover
287287
Update-AzCosmosDBAccount `
288288
-ResourceGroupName $resourceGroupName `
289289
-Name $accountName `
@@ -292,7 +292,7 @@ Update-AzCosmosDBAccount `
292292

293293
### <a id="modify-failover-priority"></a> Modify Failover Priority
294294

295-
For accounts configured with Automatic Failover, you can change the order in which Cosmos will promote secondary replicas to primary should the primary become unavailable.
295+
For accounts configured with Service-Managed Failover, you can change the order in which Cosmos will promote secondary replicas to primary should the primary become unavailable.
296296

297297
For the example below, assume the current failover priority is `West US = 0`, `East US = 1`, `South Central US = 2`. The command will change this to `West US = 0`, `South Central US = 1`, `East US = 2`.
298298

0 commit comments

Comments
 (0)