Skip to content

Commit 17f4444

Browse files
author
BobbySchmidt2
committed
Merge branch 'master' of https://github.com/MicrosoftDocs/azure-docs-pr into reference-v2-libraries
2 parents 42f46ce + 2f44b91 commit 17f4444

File tree

8 files changed

+13
-12
lines changed

8 files changed

+13
-12
lines changed

articles/aks/upgrade-cluster.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ To confirm that the upgrade was successful, use the [az aks show][az-aks-show] c
5959
az aks show --resource-group myResourceGroup --name myAKSCluster --output table
6060
```
6161

62-
The following example output shows that the cluster now runs *1.11.6*:
62+
The following example output shows that the cluster now runs *1.12.8*:
6363

6464
```json
6565
Name Location ResourceGroup KubernetesVersion ProvisioningState Fqdn

articles/azure-functions/functions-dotnet-dependency-injection.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ namespace MyNamespace
6464
private readonly IMyService _service;
6565
private readonly HttpClient _client;
6666

67-
public HttpTrigger(IMyService service, HttpClient client)
67+
public HttpTrigger(IMyService service, IHttpClientFactory httpClientFactory)
6868
{
6969
_service = service;
70-
_client = client;
70+
_client = httpClientFactory.CreateClient();;
7171
}
7272

7373
[FunctionName("GetPosts")]

articles/dns/dns-alias.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@ For example, if your static website is named www.contoso.com, your users can acc
6363

6464
As described previously, CNAME records are not supported at the zone apex. So, you can’t use a CNAME record to point contoso.com to your CDN endpoint. Instead, you can use an alias record to point the zone apex to a CDN endpoint directly.
6565

66+
> [!NOTE]
67+
> Pointing a zone apex to CDN endpoints for Azure CDN from Akamai is currently not supported.
68+
6669
## Next steps
6770

6871
To learn more about alias records, see the following articles:

articles/hdinsight/hdinsight-migrate-granular-access-cluster-configurations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ If you are using version 3.20.0 or below, update to the [latest version of the A
8585

8686
### Azure Data Lake and Stream Analytics Tools for Visual Studio
8787

88-
Update to version 2.3.9000.1 or later of [Azure Data Lake and Stream Analytics Tools for Visual Studio](https://marketplace.visualstudio.com/items?itemName=ADLTools.AzureDataLakeandStreamAnalyticsTools&ssr=false#overview) to avoid interruptions. For help with updating, see our documentation, [Update Data Lake Tools for Visual Studio](https://docs.microsoft.com/en-us/azure/hdinsight/hadoop/apache-hadoop-visual-studio-tools-get-started#update-data-lake-tools-for-visual-studio).
88+
Update to version 2.3.9000.1 or later of [Azure Data Lake and Stream Analytics Tools for Visual Studio](https://marketplace.visualstudio.com/items?itemName=ADLTools.AzureDataLakeandStreamAnalyticsTools&ssr=false#overview) to avoid interruptions. For help with updating, see our documentation, [Update Data Lake Tools for Visual Studio](https://docs.microsoft.com/azure/hdinsight/hadoop/apache-hadoop-visual-studio-tools-get-started#update-data-lake-tools-for-visual-studio).
8989

9090
### Azure Toolkit for Eclipse
9191

articles/sql-database/sql-database-serverless.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -122,18 +122,15 @@ Autoresuming is triggered if any of the following conditions are true at any tim
122122
|Modifying certain database metadata|Adding new database tags.<br>Changing max vCores, min vCores, or autopause delay.|
123123
|SQL Server Management Studio (SSMS)|Using SSMS version 18 and opening a new query window for any database in the server will resume any auto-paused database in the same server. This behavior does not occur if using SSMS version 17.9.1 with IntelliSense turned-off.|
124124

125+
Autoresuming is also triggered during service updates.
126+
125127
### Connectivity
126128

127129
If a serverless database is paused, then the first login will resume the database and return an error stating that the database is unavailable with error code 40613. Once the database is resumed, the login must be retried to establish connectivity. Database clients with connection retry logic should not need to be modified.
128130

129131
### Latency
130132

131-
The latency to autopause and autoresume a serverless database is generally estimated as follows:
132-
133-
|Operation|Estimated latency|
134-
|---|---|
135-
|Autopause|Order of 1-10 minutes|
136-
|Autoresume|Order of 1 minute|
133+
The latency to autoresume and autopause a serverless database is generally order of 1 minute to autoresume and 1-10 minutes to autopause.
137134

138135
### Feature support
139136

@@ -143,7 +140,6 @@ The following features do not support autopausing and autoresuming. That is, if
143140
- Long-term backup retention (LTR).
144141
- The sync database used in SQL data sync.
145142

146-
147143
## Onboarding into serverless compute tier
148144

149145
Creating a new database or moving an existing database into a serverless compute tier follows the same pattern as creating a new database in provisioned compute tier and involves the following two steps:

articles/sql-database/sql-database-sync-data.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ Provisioning and deprovisioning during sync group creation, update, and deletion
123123
- The names of objects (databases, tables, and columns) cannot contain the printable characters period (.), left square bracket ([), or right square bracket (]).
124124
- Azure Active Directory authentication is not supported.
125125
- Tables with same name but different schema (for example, dbo.customers and sales.customers) are not supported.
126+
- Columns with User Defined Data Types are not supported
126127

127128
#### Unsupported data types
128129

articles/terraform/terraform-backend.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ Now, initialize the configuration with *Terraform init* and then run the configu
9797

9898
When using an Azure Storage Blob for state storage, the blob is automatically locked before any operation that writes state. This configuration prevents multiple concurrent state operations, which can cause corruption. For more information, see [State Locking][terraform-state-lock] on the Terraform documentation.
9999

100-
The lock can be seen when examining the blob though the Azure portal or other Azure management tooling.
100+
The lock can be seen when examining the blob through the Azure portal or other Azure management tooling.
101101

102102
![Azure blob with lock](media/terraform-backend/lock.png)
103103

articles/virtual-wan/virtual-wan-expressroute-portal.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ Before you can configure Virtual WAN, you must first enroll your subscription in
4343
**Preview Considerations:**
4444

4545
The ExpressRoute circuit must be enabled in a country/region that supports [ExpressRoute Global Reach](https://docs.microsoft.com/azure/expressroute/expressroute-faqs#where-is-expressroute-global-reach-supported).
46+
The ExpressRoute circuit must be a Premium Circuit to connect to Virtual WAN hub.
4647

4748
## <a name="vnet"></a>1. Create a virtual network
4849

0 commit comments

Comments
 (0)