Skip to content

Commit 74b7993

Browse files
Updates for 8690
1 parent f9fdc22 commit 74b7993

2 files changed

Lines changed: 32 additions & 0 deletions

File tree

support/azure/app-service/toc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ items:
1919
href: web-apps-performance-faqs.md
2020
- name: Worker Process requested recycle due to Percent Memory limit message
2121
href: worker-process-percent-memory-limit-message.md
22+
- name: Web request times out after 230 seconds
23+
href: web-request-times-out-after-230-seconds.md
2224
- name: Troubleshoot instance-related issues
2325
href: troubleshoot-instance-related-issues-on-azure-app-service.md
2426
- name: Troubleshoot temporary storage
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
title: Web Request Times Out After 230 Seconds
3+
description: This article provides guidance on addressing when a web request times out after 230 seconds in Azure App Service.
4+
author: JarrettRenshaw
5+
manager: dcscontentpm
6+
ms.topic: troubleshooting-general
7+
ms.date: 12/16/2025
8+
ms.author: jarrettr
9+
ms.reviewer: v-ryanberg
10+
ms.service: azure-app-service
11+
ms.custom: sap:Availability, Performance, and Application Issues
12+
---
13+
# Web request times out after 230 seconds
14+
15+
This article provides guidance on addressing when a web request times out after 230 seconds in Azure App Service.
16+
17+
## Symptom
18+
19+
A web request times out after 230 seconds (about four minutes).
20+
21+
## Cause
22+
23+
Azure Load Balancer has a default idle timeout setting of four minutes. This setting is generally a reasonable response time limit for a web request. Therefore, App Service returns a timeout to the client if your application doesn't return a response within approximately 240 seconds (230 seconds on Windows app, 240 seconds on Linux app).
24+
25+
## Resolution
26+
27+
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.
28+
29+
WebJobs is designed for background processing. You can do as much background processing as you want in a WebJob. For more information about WebJobs, see [Run background tasks with WebJobs](/azure/app-service/webjobs-create).
30+

0 commit comments

Comments
 (0)