Skip to content

Commit 1e03113

Browse files
authored
Merge pull request #296754 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents 4470ecb + 47836c8 commit 1e03113

File tree

4 files changed

+22
-16
lines changed

4 files changed

+22
-16
lines changed

articles/backup/backup-azure-database-postgresql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,5 +182,5 @@ Azure Backup service creates a job for scheduled backups or if you trigger on-de
182182

183183
## Next steps
184184

185-
- [Azure Backup pricing information for PostgreSQ](https://azure.microsoft.com/pricing/details/backup/)
186-
- [Troubleshoot PostgreSQL database backup by using Azure Backup](backup-azure-database-postgresql-troubleshoot.md)
185+
- [Azure Backup pricing information for PostgreSQL](https://azure.microsoft.com/pricing/details/backup/)
186+
- [Troubleshoot PostgreSQL database backup by using Azure Backup](backup-azure-database-postgresql-troubleshoot.md)

articles/container-apps/how-to-integrate-with-azure-front-door.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ In this article, you learn how to connect directly from Azure Front Door to your
3636
3737
- This feature is only supported for workload profile environments.
3838
39+
- This feature is only available in [supported regions](/azure/frontdoor/private-link#region-availability).
40+
3941
For more information about prerequisites and setup, see [Quickstart: Deploy your first container app with containerapp up](get-started.md?tabs=bash).
4042
4143
## Set environment variables

articles/healthcare-apis/fhir/fhir-best-practices.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,16 @@ To achieve optimal performance with the import operation, consider the following
3535

3636
In Azure FHIR service, bundles act as containers for multiple resources. Batch and transaction bundles enable users to submit sets of actions in a single HTTP request or response. Consider the following to achieve higher throughput with bundle ingestion.
3737

38-
* **Do** tune the number of concurrent bundle requests to the FHIR server. A high number (>100) may lead to negative scaling and reduced processing throughput. The optimal concurrency is dependent on the complexity of the bundles and resources.
3938
* **Do** generate load on Azure FHIR service in a linear manner and avoid burst operations to prevent performance degradation.
39+
* **Do** tune the number of concurrent bundle requests to the FHIR server. A high number (>100) may lead to negative scaling and reduced processing throughput.
40+
* **DO** use separate transaction bundles for FHIR resources that don't depend on each other, and can be updated separately.
41+
* **Consider** using smaller bundle sizes for complex operations such as conditional creates or updates.
4042
* **Consider** enabling parallel processing for batch and transaction bundles. By default, resources in bundles are processed sequentially. To enhance throughput, you can enable parallel resource processing by adding the HTTP header flag `x-bundle-processing-logic` and setting it to `parallel`. For more information, see the [batch bundle parallel processing documentation](rest-api-capabilities.md#bundle-parallel-processing).
43+
* **Avoid** submitting parallel bundle requests that attempt to update the same resources concurrently, which can cause delays in processing.
44+
* **Avoid** submitting a large number of bundles with a single PUT or POST request can lead to transaction bottlenecks.
4145

4246
> [!NOTE]
43-
> Parallel bundle processing can enhance throughput when there isn't an implicit dependency on the order of resources within an HTTP operation.
44-
45-
* **Consider** splitting resource entries across multiple bundles to increase parallelism, which can enhance throughput. Optimizing the number of resource entries in a bundle can reduce network time.
46-
* **Consider** using smaller bundle sizes for complex operations. Smaller transaction bundles can reduce errors and support data consistency. Use separate transaction bundles for FHIR resources that don't depend on each other, and can be updated separately.
47-
* **Avoid** submitting parallel bundle requests that attempt to update the same resources concurrently, which can cause delays in processing.
47+
> Parallel bundle processing using the `x-bundle-processing-logic` flags can enhance throughput when there isn't an implicit dependency on the order of resources within an HTTP operation.
4848
4949
### Search parameter index tuning
5050

includes/static-web-apps-languages-runtimes.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,22 @@ To configure the API language runtime version, set the `apiRuntime` property in
1111
| Language runtime version | Operating system | Azure Functions version | `apiRuntime` value | End of support date |
1212
|--|--|--|--|--|
1313
| .NET Core 3.1 | Windows | 3.x | `dotnet:3.1` | December 3, 2022 |
14-
| .NET 6.0 in-process | Windows | 4.x | `dotnet:6.0` | - |
15-
| .NET 6.0 isolated | Windows | 4.x | `dotnet-isolated:6.0` | - |
16-
| .NET 7.0 isolated | Windows | 4.x | `dotnet-isolated:7.0` | - |
14+
| .NET 6.0 in-process | Windows | 4.x | `dotnet:6.0` | April 30, 2025 |
15+
| .NET 8.0 in-process | Windows | 4.x | `dotnet:8.0` | - |
16+
| .NET 6.0 isolated | Windows | 4.x | `dotnet-isolated:6.0` | April 30, 2025 |
17+
| .NET 7.0 isolated | Windows | 4.x | `dotnet-isolated:7.0` | April 30, 2025 |
1718
| .NET 8.0 isolated | Windows | 4.x | `dotnet-isolated:8.0` | - |
19+
| .NET 9.0 isolated | Windows | 4.x | `dotnet-isolated:9.0` | - |
1820
| Node.js 12.x | Linux | 3.x | `node:12` | December 3, 2022 |
19-
| Node.js 14.x | Linux | 4.x | `node:14` | - |
20-
| Node.js 16.x | Linux | 4.x | `node:16` | - |
21-
| Node.js 18.x | Linux | 4.x | `node:18` | - |
22-
| Node.js 20.x (preview) | Linux | 4.x | `node:20` | - |
23-
| Python 3.8 | Linux | 4.x | `python:3.8` | - |
21+
| Node.js 14.x | Linux | 4.x | `node:14` | April 30, 2025 |
22+
| Node.js 16.x | Linux | 4.x | `node:16` | April 30, 2025 |
23+
| Node.js 18.x | Linux | 4.x | `node:18` | May 31, 2025 |
24+
| Node.js 20.x | Linux | 4.x | `node:20` | - |
25+
| Python 3.8 | Linux | 4.x | `python:3.8` | April 30, 2025 |
2426
| Python 3.9 | Linux | 4.x | `python:3.9` | - |
2527
| Python 3.10 | Linux | 4.x | `python:3.10` | - |
28+
| Python 3.11 | Linux | 4.x | `python:3.11` | - |
29+
2630

2731
### .NET
2832

0 commit comments

Comments
 (0)