Hello,
I get the below error for Azure API App, service timeout when API takes more than 3.83 mins. Is there any way that I can increase the timeout? or do I have to go with the WebJobs approach as explained below. As per the below update from Microsoft. We can create webjobs and by API we can call it:
"230 seconds is the maximum amount of time that a request can take without sending any data back to the response. It is not configurable. For more details, refer to Time Out After 230 seconds. If your web app requires background processing, we recommend using Azure WebJobs. The Azure web app can call WebJobs and be notified when background processing is finished. You can choose from multiple methods for using WebJobs, including queues and triggers."
How can we call webjobs from API and pass JSON object to webjobs?
Sourced from MSDN