Skip to content

Commit 2067ad4

Browse files
author
Jill Grant
authored
Merge pull request #270311 from mattchenderson/inprocret
updating references to in-process model
2 parents f4232f9 + 5d1e807 commit 2067ad4

File tree

68 files changed

+239
-99
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+239
-99
lines changed

articles/azure-functions/dotnet-isolated-in-process-differences.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,15 @@ There are two execution models for .NET functions:
1717

1818
[!INCLUDE [functions-dotnet-execution-model](../../includes/functions-dotnet-execution-model.md)]
1919

20+
[!INCLUDE [functions-in-process-model-retirement-note](../../includes/functions-in-process-model-retirement-note.md)]
21+
2022
This article describes the current state of the functional and behavioral differences between the two models. To migrate from the in-process model to the isolated worker model, see [Migrate .NET apps from the in-process model to the isolated worker model][migrate].
2123

2224
## Execution model comparison table
2325

2426
Use the following table to compare feature and functional differences between the two models:
2527

26-
| Feature/behavior | Isolated worker process | In-process<sup>3</sup> |
28+
| Feature/behavior | Isolated worker model | In-process model<sup>3</sup> |
2729
| ---- | ---- | ---- |
2830
| [Supported .NET versions](#supported-versions) | Long Term Support (LTS) versions,<br/>Standard Term Support (STS) versions,<br/>.NET Framework | Long Term Support (LTS) versions<sup>6</sup> |
2931
| Core packages | [Microsoft.Azure.Functions.Worker](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker/)<br/>[Microsoft.Azure.Functions.Worker.Sdk](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Sdk) | [Microsoft.NET.Sdk.Functions](https://www.nuget.org/packages/Microsoft.NET.Sdk.Functions/) |

articles/azure-functions/functions-add-output-binding-storage-queue-vs.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@ Because you're using a Queue storage output binding, you need the Storage bindin
5151
Install-Package Microsoft.Azure.Functions.Worker.Extensions.Storage.Queues
5252
```
5353
# [In-process model](#tab/in-process)
54+
55+
[!INCLUDE [functions-in-process-model-retirement-note](../../includes/functions-in-process-model-retirement-note.md)]
56+
5457
```bash
5558
Install-Package Microsoft.Azure.WebJobs.Extensions.Storage
5659
```

articles/azure-functions/functions-bindings-azure-data-explorer-input.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ The Azure Data Explorer input binding retrieves data from a database.
2020

2121
[!INCLUDE [functions-bindings-csharp-intro-with-csx](../../includes/functions-bindings-csharp-intro-with-csx.md)]
2222

23+
[!INCLUDE [functions-in-process-model-retirement-note](../../includes/functions-in-process-model-retirement-note.md)]
24+
2325
# [Isolated worker model](#tab/isolated-process)
2426

2527
More samples for the Azure Data Explorer input binding (out of process) are available in the [GitHub repository](https://github.com/Azure/Webjobs.Extensions.Kusto/tree/main/samples/samples-outofproc).

articles/azure-functions/functions-bindings-azure-data-explorer-output.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ For information on setup and configuration details, see the [overview](functions
2222

2323
[!INCLUDE [functions-bindings-csharp-intro-with-csx](../../includes/functions-bindings-csharp-intro-with-csx.md)]
2424

25+
[!INCLUDE [functions-in-process-model-retirement-note](../../includes/functions-in-process-model-retirement-note.md)]
26+
2527
### [Isolated worker model](#tab/isolated-process)
2628

2729
More samples for the Azure Data Explorer output binding are available in the [GitHub repository](https://github.com/Azure/Webjobs.Extensions.Kusto/tree/main/samples/samples-outofproc).

articles/azure-functions/functions-bindings-azure-data-explorer.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ dotnet add package Microsoft.Azure.Functions.Worker.Extensions.Kusto --prereleas
3737

3838
# [In-process model](#tab/in-process)
3939

40+
[!INCLUDE [functions-in-process-model-retirement-note](../../includes/functions-in-process-model-retirement-note.md)]
41+
4042
Functions run in the same process as the Functions host. To learn more, see [Develop C# class library functions using Azure Functions](functions-dotnet-class-library.md).
4143

4244
Add the extension to your project by installing [this NuGet package](https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.Kusto).

articles/azure-functions/functions-bindings-azure-sql-input.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ For information on setup and configuration details, see the [overview](./functio
2727

2828
[!INCLUDE [functions-bindings-csharp-intro-with-csx](../../includes/functions-bindings-csharp-intro-with-csx.md)]
2929

30+
[!INCLUDE [functions-in-process-model-retirement-note](../../includes/functions-in-process-model-retirement-note.md)]
31+
3032
# [Isolated worker model](#tab/isolated-process)
3133

3234
More samples for the Azure SQL input binding are available in the [GitHub repository](https://github.com/Azure/azure-functions-sql-extension/tree/main/samples/samples-outofproc).

articles/azure-functions/functions-bindings-azure-sql-output.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ For information on setup and configuration details, see the [overview](./functio
2727

2828
[!INCLUDE [functions-bindings-csharp-intro-with-csx](../../includes/functions-bindings-csharp-intro-with-csx.md)]
2929

30+
[!INCLUDE [functions-in-process-model-retirement-note](../../includes/functions-in-process-model-retirement-note.md)]
31+
3032
# [Isolated worker model](#tab/isolated-process)
3133

3234
More samples for the Azure SQL output binding are available in the [GitHub repository](https://github.com/Azure/azure-functions-sql-extension/tree/main/samples/samples-outofproc).

articles/azure-functions/functions-bindings-azure-sql-trigger.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,8 @@ namespace AzureSQL.ToDo
116116

117117
# [In-process model](#tab/in-process)
118118

119+
[!INCLUDE [functions-in-process-model-retirement-note](../../includes/functions-in-process-model-retirement-note.md)]
120+
119121
More samples for the Azure SQL trigger are available in the [GitHub repository](https://github.com/Azure/azure-functions-sql-extension/tree/main/samples/samples-csharp).
120122

121123

articles/azure-functions/functions-bindings-azure-sql.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ dotnet add package Microsoft.Azure.Functions.Worker.Extensions.Sql --prerelease
5252
5353
# [In-process model](#tab/in-process)
5454

55+
[!INCLUDE [functions-in-process-model-retirement-note](../../includes/functions-in-process-model-retirement-note.md)]
56+
5557
Functions execute in the same process as the Functions host. To learn more, see [Develop C# class library functions using Azure Functions](functions-dotnet-class-library.md).
5658

5759
Add the extension to your project by installing this [NuGet package](https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.Sql).

articles/azure-functions/functions-bindings-cache-trigger-redislist.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,8 @@ namespace Microsoft.Azure.Functions.Worker.Extensions.Redis.Samples.RedisListTri
7979

8080
### [In-process model](#tab/in-process)
8181

82+
[!INCLUDE [functions-in-process-model-retirement-note](../../includes/functions-in-process-model-retirement-note.md)]
83+
8284
```csharp
8385
using Microsoft.Extensions.Logging;
8486

0 commit comments

Comments
 (0)