Skip to content

Commit b70ec3d

Browse files
committed
Link fixes
1 parent bec3811 commit b70ec3d

File tree

1 file changed

+6
-14
lines changed

1 file changed

+6
-14
lines changed
Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,19 @@
11
---
2-
title: include file
3-
description: include file
4-
services: functions
5-
author: nzthiago
2+
author: ggailey777
63
ms.service: azure-functions
74
ms.topic: include
8-
ms.date: 02/21/2018
9-
ms.author: nzthiago
10-
ms.custom: include file
5+
ms.date: 03/03/2022
6+
ms.author: glenga
117
---
128
## <a name="timeout"></a>Function app timeout duration
139

1410
The timeout duration of a function app is defined by the `functionTimeout` property in the [host.json](../articles/azure-functions/functions-host-json.md#functiontimeout) project file. The following table shows the default and maximum values (in minutes) for specific plans:
1511

1612
| Plan | Default | Maximum<sup>1</sup> |
1713
|------|---------|---------|---------|
18-
| **[Consumption plan]** | 5 | 10 |
19-
| **[Premium plan]** | 30<sup>2</sup> | Unlimited |
20-
| **[Dedicated plan]** | 30<sup>2</sup> | Unlimited |
14+
| **[Consumption plan](../articles/azure-functions/consumption-plan.md)** | 5 | 10 |
15+
| **[Premium plan](../articles/azure-functions/functions-premium-plan.md)** | 30<sup>2</sup> | Unlimited |
16+
| **[Dedicated plan](../articles/azure-functions/dedicated-plan.md)** | 30<sup>2</sup> | Unlimited |
2117

2218
<sup>1</sup> Regardless of the function app timeout setting, 230 seconds is the maximum amount of time that an HTTP triggered function can take to respond to a request. This is because of the [default idle timeout of Azure Load Balancer](../articles/app-service/faq-availability-performance-application-issues.yml#why-does-my-request-time-out-after-230-seconds-). For longer processing times, consider using the [Durable Functions async pattern](../articles/azure-functions/durable/durable-functions-overview.md#async-http) or [defer the actual work and return an immediate response](../articles/azure-functions/performance-reliability.md#avoid-long-running-functions). <br/>
2319
<sup>2</sup> The default timeout for version 1.x of the Functions runtime is _unlimited_.
24-
25-
[Consumption plan]: consumption-plan.md
26-
[Premium plan]: functions-premium-plan.md
27-
[Dedicated plan]: dedicated-plan.md

0 commit comments

Comments
 (0)