Questions tagged [application-warmup]

11 questions
7
votes
1 answer

ASP.NET MVC - Application warmup - which of two approaches to use?

In order to speed up reaction time of our ASP.NET MVC application, we'd like to "warm up" the application after it has been installed (or after the app pool has been recycled). Some frequently used lookup data should be fetched from the SQL Server…
marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
5
votes
1 answer

Amazon elastic container service - Kubernetes liveness/readiness checks equivalent for ECS

My task is to warm up an ASP.Net Core app that run inside Docker containers deployed on ECS. It seem that with Kubernetes, we can define a readiness check path that Kubernetes will first send request to and only start sending real traffic once that…
Tran Nguyen
  • 1,341
  • 10
  • 15
3
votes
1 answer

What is the Azure warmup UserAgent string in 2018?

This source says Initialization: https://support.microsoft.com/en-us/help/2843964/application-initialization-module-fails-when-web-site-requires-ssl Then this site says…
Dirk Boer
  • 8,522
  • 13
  • 63
  • 111
3
votes
1 answer

How to script warm up of CloudService instances in Azure?

I have a CloudService Classic Application with 2 instances which I will call bob_app_001 and bob_app_002, each BobApp has 5 instances in it. The app is a c# Api which has an endpoint that we use for monitoring on ~/ping. I currently deploy by…
Mr_road
  • 554
  • 6
  • 25
2
votes
1 answer

ASP.NET 4.5 application warmup causes error determining loaded assemblies

I have a library module that we use in all of our web applications that lists out all the loaded assemblies (and their version number) into our log4net log file in the Application_Start method of an ASP.NET webforms application. This has worked…
marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
1
vote
1 answer

Using cron job to hit _ah/warmup handler, getting 301 in logs. Why is it redirecting ? Shouldn't it return 200?

So my use case is such that, it's best for me to use min_instance to zero in app.yaml but have one instance always running for default version. So in order to do that I have scheduled a cron job to hit _ah/warmup after every 14 minutes since the…
0
votes
0 answers

Can I check SkSL bundle engine version with Flutter?

I have recorded SkSl script to warmup shaders. I use this build option to apply it for my Flutter app's release builds: flutter build appbundle --release --bundle-sksl-path flutter_01.sksl.json It works great, but it stops work when new Flutter…
Mol0ko
  • 2,938
  • 1
  • 18
  • 45
0
votes
1 answer

How to ignore HTTPS Only Azure Appservice custom domain setting for Always on

I have a ASP.Net Core 2.2 site running as an Azure AppService. As part of the configuration, I have a custom domain with the HTTPS only setting turned on. I also have the Always on setting turned on on my Appservice. According to this…
0
votes
3 answers

Fastest way to restart a .NET web app programmatically

I’m writing some e2e tests for a web application where there is a lot of code I need to interact with that is outside my control. In order to setup my application at the start of each test or group of tests, I intend to use sql scripts to seed the…
0
votes
1 answer

Azure appservices warmup taking forever

I am running my asp.net C# app on azure appservices in a reasonably good plan and I am getting a really slow app initialization. This happens every time I deploy or restart the app. At first, I thought my global.asax Application_Startup was taking…
0
votes
1 answer

Programmatically start appengine autoscaled instance

Is there any way in appengine api to programmatically restart the instance or make it stop so that appengine will spawn another server instance? The reason is during our application servlet, warmpup servlet initialization, due to some network…