Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP.NET warmup/initialize

I'm trying to eliminate (or at least minimize) startup/warmup times for my .NET applications. I'm not really sure on how to do this even though it's a common concern.

There's a ton of questions about slow startup of .NET applications. These are easily explained by pool recycles, worker process startup, dynamic compilation of .aspx files, JIT etc. In addition, there are more things that may need to be initialized within the application such as EntityFramework and application caches.

I've found alot of different solutions such as:

  • ASP.NET Precompilation
  • IIS 8 Application Initialization (and for IIS 7.5)
  • Auto-Start ASP.NET Applications

However, I'm not entirely satisfied with any of the solutions above. Furthermore I'm deploying my applications to Azure Websites (in most cases) so I have limited access to the IIS.

I know that there are some custom "warmup scripts" that uses various methods for sending requests to the application (e.g. wget/curl). My idea is to create a "Warmup.aspx" page in each of my ASP.NET applications. Then I have a warmup service that sends an HTTP GET to the Warmup.aspx of each site every ... 5 minutes. This service could be a WorkerRole in Azure or a Windows Service in an on-premise installation. Warmup.aspx will will then do the following:

  • Send an HTTP GET to each .aspx-file within the application (to dynamically compile the page)
    • This could be avoided by precompiling the .aspx pages using aspnet_compiler.exe
  • Send a query to the database to initialize EntityFramework
  • Initialize application caches etc

So, my final question is whether there are better alternatives than my "Warmup.aspx" script? And is it a good approach or do you recommend some other method? I would really like some official method that would handle the above criteria.

Any and all suggestions are welcome, thanks!

like image 437
mikeesouth Avatar asked Aug 07 '12 21:08

mikeesouth


1 Answers

Did you try this IIS Auto-Start feature described here ?

https://www.simple-talk.com/blogs/2013/03/05/speeding-up-your-application-with-the-iis-auto-start-feature/

like image 65
Aby Avatar answered Sep 20 '22 23:09

Aby