Hello @Roy, Chandan,
Azure Functions run for a certain time, depending on the plan:
The host setting should help you for now.
I recommend rethinking your architecture if you 'run out of time' and search for the bottleneck.
Extra, regarding the dedicated plan, you need to set a few things:
- Set the 'always on' setting
- Set the alternative timeout
You can set the timeout in the host.json file:
{
...
,
"functionTimeout": "00:55:00"
}
If the response helped, do "Accept Answer". If it doesn't work, please let us know the progress. All community members with similar issues will benefit by doing so. Your contribution is highly appreciated.