Skip to content

Commit 14323f9

Browse files
authored
Merge pull request #308855 from ggailey777/UUF-updates-nov2025
[Functions][UUF Fixes] Copilot fix for customer feedback issue
2 parents 32092e8 + 3ce4f52 commit 14323f9

10 files changed

Lines changed: 510 additions & 232 deletions

articles/azure-functions/dotnet-isolated-process-guide.md

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

articles/azure-functions/flex-consumption-site-updates.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ms.service: azure-functions
44
description: Learn how to configure zero downtime deployments and choose the right site update strategy for your Flex Consumption app.
55
ms.custom: vs-azure
66
ms.topic: concept-article
7-
ms.date: 10/30/2025
7+
ms.date: 12/04/2025
88
---
99

1010
# Site update strategies in Flex Consumption
@@ -16,8 +16,7 @@ The Flex Consumption plan currently supports these update strategies:
1616
- **Recreate**: Functions restarts all running instances after replacing your code with the latest version. This approach might cause brief downtime while instances are recycled and preserves the default behavior from other Azure Functions hosting plans.
1717
- **Rolling update** (preview): Provides zero-downtime deployments by draining and replacing instances in batches. In-progress executions complete naturally without forced termination.
1818

19-
> [!IMPORTANT]
20-
> The rolling update strategy is currently in preview and isn't recommended for production apps. Review the current [limitations and considerations](#rolling-update-strategy-considerations) before enabling this strategy in any production app.
19+
[!INCLUDE [functions-flex-rolling-updates-preview-note](../../includes/functions-flex-rolling-updates-preview-note.md)]
2120

2221
## Strategy comparison
2322

articles/azure-functions/functions-app-settings.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
title: App settings reference for Azure Functions
33
description: Reference documentation for the Azure Functions app settings or environment variables used to configure functions apps.
4-
ms.topic: conceptual
5-
ms.date: 07/11/2025
4+
ms.topic: reference
5+
ms.date: 12/15/2025
66
ms.custom:
77
- devx-track-extended-java
88
- devx-track-python
@@ -677,7 +677,9 @@ This setting is required for both Consumption and Elastic Premium plan apps. It'
677677

678678
Changing or removing this setting can cause your function app to not start. To learn more, see [this troubleshooting article](functions-recover-storage-account.md#storage-account-application-settings-were-deleted).
679679

680-
Azure Files doesn't support using managed identity when accessing the file share. For more information, see [Azure Files supported authentication scenarios](../storage/files/storage-files-active-directory-overview.md#supported-authentication-scenarios).
680+
Azure Files doesn't currently support using managed identity when accessing the file share. For more information, see [Azure Files supported authentication scenarios](../storage/files/storage-files-active-directory-overview.md#supported-authentication-scenarios).
681+
682+
You might use a [KeyVault reference](../app-service/app-service-key-vault-references.md) for this connection setting. However, additional configuration is required to create and dynamically scale a function app in a Premium or Consumption plan when the storage connection string is maintained in a KeyVault. For more information, see [Considerations for Azure Files mounting](../app-service/app-service-key-vault-references.md#considerations-for-azure-files-mounting).
681683

682684
## WEBSITE\_CONTENTOVERVNET
683685

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -668,15 +668,14 @@ When the trigger parameter is of type `HttpRequestData` or `HttpRequest`, custom
668668
using Microsoft.AspNetCore.Http;
669669
using Microsoft.AspNetCore.Mvc;
670670
using Microsoft.Azure.Functions.Worker;
671-
using FromBodyAttribute = Microsoft.Azure.Functions.Worker.Http.FromBodyAttribute;
672671

673672
namespace AspNetIntegration
674673
{
675674
public class BodyBindingHttpTrigger
676675
{
677676
[Function(nameof(BodyBindingHttpTrigger))]
678677
public IActionResult Run([HttpTrigger(AuthorizationLevel.Anonymous, "post")] HttpRequest req,
679-
[FromBody] Person person)
678+
[Microsoft.Azure.Functions.Worker.Http.FromBody] Person person)
680679
{
681680
return new OkObjectResult(person);
682681
}

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

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

articles/azure-functions/monitor-functions.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
title: Monitor Azure Functions
33
description: Start here to learn how to monitor Azure Functions.
4-
ms.date: 03/08/2024
4+
ms.date: 12/08/2025
55
ms.custom: horz-monitor
6-
ms.topic: conceptual
6+
ms.topic: concept-article
77
ms.service: azure-functions
88
---
99

@@ -42,6 +42,13 @@ Azure Functions integrates with Azure Monitor Logs to monitor functions. For det
4242

4343
For the available resource log categories, their associated Log Analytics tables, and the logs schemas for Azure Functions, see [Azure Functions monitoring data reference](monitor-functions-reference.md#resource-logs).
4444

45+
>[!IMPORTANT]
46+
>Application Insights processes telemetry in batches. When a batch payload is too large or contains unescaped special characters, log entries might be dropped. To help prevent data loss:
47+
>
48+
>+ Limit individual log messages to 10,000 characters, especially when you log large XML or JSON payloads.
49+
>+ Escape special characters in log data.
50+
>+ Summarize or truncate large payloads before you log them.
51+
4552
[!INCLUDE [horz-monitor-activity-log](~/reusable-content/ce-skilling/azure/includes/azure-monitor/horizontals/horz-monitor-activity-log.md)]
4653

4754
## Other logs

0 commit comments

Comments
 (0)