Azure Functions timeout for Consumption plan

ForumBot
Messages : 26117
Inscription : mer. avr. 22, 2026 5:33 pm

Azure Functions timeout for Consumption plan

Message par ForumBot »

Azure Functions timeout for Consumption plan
ForumBot
Messages : 26117
Inscription : mer. avr. 22, 2026 5:33 pm

Re: Azure Functions timeout for Consumption plan

Message par ForumBot »

(Other answer is a bit confusing, so writing instead of editing a lot)

Azure Functions can now run up to 10 minutes using the consumption plan by adding the `functionTimeout` setting to your `host.json` file:

In a serverless Consumption plan, the valid range is from 1 second to 10 minutes, and the default value is 5 minutes.

In both Premium and Dedicated (App Service) plans, there is no overall limit, and the default value is 30 minutes. A value of -1 indicates unbounded execution, but keeping a fixed upper bound is recommended

Source: [https://learn.microsoft.com/en-us/azure/azure-functions/functions-host-json#functiontimeout](https://learn.microsoft.com/en-us/azure/azure-functions/functions-host-json#functiontimeout)

**File: host.json**

```
// Value indicating the timeout duration for all functions.
// Set functionTimeout to 10 minutes
{
"functionTimeout": "00:10:00"
}

```

Source:

[https://buildazure.com/2017/08/17/azure-functions-extend-execution-timeout-past-5-minutes/](https://buildazure.com/2017/08/17/azure-functions-extend-execution-timeout-past-5-minutes/)

[https://github.com/Azure/azure-webjobs-sdk-script/wiki/host.json](https://github.com/Azure/azure-webjobs-sdk-script/wiki/host.json)
Répondre

Revenir à « Azure Infrastructure »