Reputation: 31
Problem
In our production environment, system occasionally delays the page response of an ASP.NET MVC application up to 30 seconds or so, even though same page renders in 2-3 seconds most of the times. This happens randomly with any arbitrary page, and GET or POST type requests. For example, log files indicates, system took 15 seconds to complete a request for jquery script file or for other small css file it took 10 secs.
Similar Problems:
Production Environment:
We have tried followings/observations:
It seems as something causing delay along HTTP Pipeline or worker processor seeing the request late.
Looking for other suggestions.
-- Thanks
Upvotes: 3
Views: 2812
Reputation: 17795
Sorry if this is too obvious but have you checked IIS? for Process recycling, you can set it so it recycles once a day at a set time .
You could also try application warm up http://weblogs.asp.net/gunnarpeipman/archive/2010/01/31/asp-net-4-0-how-to-use-application-warm-up-class.aspx
Upvotes: 1