Skip to content

Commit 15a3c38

Browse files
Merge pull request #297693 from MicrosoftDocs/main
Merged by Learn.Build PR Management system
2 parents b5ef5b4 + 58b0035 commit 15a3c38

20 files changed

+324
-276
lines changed

articles/azure-functions/durable/durable-functions-dotnet-isolated-overview.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,15 +86,20 @@ public class MyOrchestration : TaskOrchestrator<string, string>
8686
```
8787

8888
## Durable entities
89-
Durable entities are supported in the .NET isolated worker. See [developer's guide](./durable-functions-dotnet-entities.md).
89+
90+
Durable entities are supported in the .NET isolated worker. For more information, see the [developer's guide](./durable-functions-dotnet-entities.md).
9091

9192
## Migration guide
9293

93-
This guide assumes you're starting with a .NET Durable Functions 2.x project.
94+
This process assumes you're starting with a .NET Durable Functions 2.x project running in-process with the Functions host.
95+
96+
### Migrate your project
97+
98+
The first step is to [migrate your .NET project to the isolated worker process](../migrate-dotnet-to-isolated-model.md).
9499

95-
### Update your project
100+
### Update package reference
96101

97-
The first step is to update your project to [Azure Functions .NET isolated](../migrate-dotnet-to-isolated-model.md). Then, update your Durable Functions NuGet package references.
102+
After you've migrated your app to use the isolate worker process, you must update your Durable Functions NuGet package to reference the isolated worker-specific package, like in this example:
98103

99104
Old:
100105

articles/azure-functions/durable/durable-functions-overview.md

Lines changed: 78 additions & 60 deletions
Large diffs are not rendered by default.

articles/azure-functions/functions-bindings-http-webhook-trigger.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1108,6 +1108,8 @@ Most HTTP trigger templates require an access key in the request. So your HTTP r
11081108
https://<APP_NAME>.azurewebsites.net/api/<FUNCTION_NAME>?code=<API_KEY>
11091109
```
11101110

1111+
Function apps that run in containers use the domain of the container host. For an example HTTP endpoint hosted in Azure Container Apps, see the example in [this Container Apps hosting article](functions-deploy-container-apps.md#verify-your-functions-on-azure).
1112+
11111113
The key can be included in a query string variable named `code`, as mentioned earlier. It can also be included in an `x-functions-key` HTTP header. The value of the key can be any function key defined for the function, or any host key.
11121114

11131115
You can allow anonymous requests, which don't require keys. You can also require that the master key is used. You change the default authorization level by using the `authLevel` property in the binding JSON.

articles/azure-functions/functions-create-cosmos-db-triggered-function.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Next, you create a function in the new function app.
4141

4242
## Create Azure Cosmos DB trigger
4343

44-
1. In your function app, select **Overview**, and then select **+ Create** under **Functions**.
44+
1. In your function app, select **Overview** and then select **+ Create** under **Functions**. If you don't see a **Create** button, you must instead add your Azure Cosmos DB trigger to your local code project and then redeploy to Azure. For more information, see [Code and test Azure Functions locally](functions-develop-local.md).
4545

4646
1. Under **Select a template**, scroll down and choose the **Azure Cosmos DB trigger** template.
4747

articles/azure-functions/functions-create-function-app-portal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Next, create a function in the new function app.
8888
::: zone pivot="programming-language-python,programming-language-javascript,programming-language-powershell,programming-language-csharp"
8989
## <a name="create-function"></a>Create an HTTP trigger function
9090

91-
1. In your function app, select **Overview**, and then select **+ Create** under **Functions**. If you don't see the **+ Create** button, you can instead [create your functions locally](#create-your-functions-locally).
91+
1. In your function app, select **Overview**, and then select **+ Create** under **Functions**. If you don't see the **+ Create** button, you must instead [create your functions locally](./functions-develop-local.md).
9292

9393
1. Under **Select a template**, scroll down and choose the **HTTP trigger** template.
9494

articles/azure-functions/functions-develop-vs.md

Lines changed: 99 additions & 95 deletions
Large diffs are not rendered by default.

articles/azure-functions/functions-premium-plan.md

Lines changed: 47 additions & 47 deletions
Large diffs are not rendered by default.

articles/azure-functions/migrate-dotnet-to-isolated-model.md

Lines changed: 47 additions & 42 deletions
Large diffs are not rendered by default.

articles/frontdoor/routing-methods.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,9 @@ Each origin in your Azure Front Door origin group has a *Priority* property, whi
7878

7979
## <a name="weighted"></a>Weighted traffic-routing method
8080

81+
> [!NOTE]
82+
> For customers with very low RPS (Requests Per Second), due to the nature of how distributed AFD POPs and machines are, we cannot guarantee that the weights configured by the customer will be strictly followed and the load balancing may appear skewed.
83+
8184
The *Weighted* traffic-routing method allows you to distribute traffic based on predefined weights.
8285

8386
In this method, you assign a weight to each origin in your Azure Front Door origin group. The weight is an integer between 1 and 1000, with a default value of **50**.

articles/frontdoor/standard-premium/websocket.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Azure Front Door WebSocket (preview)
2+
title: Azure Front Door WebSocket
33
description: This article describes how WebSocket work on Azure Front Door for real-time bidirectional communication between a server and client over a long running TCP connection.
44
author: jessie-jyy
55
ms.author: halkazwini

0 commit comments

Comments
 (0)