Questions tagged [warm-up]

72 questions
5
votes
1 answer

Returning a custom response code for for serving static html when using IIS ApplicationInitialization remapManagedRequestsTo feature?

I'm currently using the ApplicationInitialization feature of IIS to warm up my ASP.NET application. I've set the attribute remapManagedRequestsTo to "warmup.html".
Frank Fu
  • 3,483
  • 2
  • 28
  • 38
3
votes
2 answers

What really is to “warm up” threads on multithreading processing?

I’m dealing with multithreading in Java and, as someone pointed out to me, I noticed that threads warm up, it is, they get faster as they are repeatedly executed. I would like to understand why this happens and if it is related to Java itself or…
ursoouindio
  • 113
  • 7
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

Avoiding Application Pool Warmup in IIS

I'm having issues with an ASP.net site (framework 3.5, IIS6 ) having very slow 'first hit' response times. I'm guessing that the issue is to do with the app pool recycling and having to warm up. I got to thinking. As part of the site I have a HTTP…
Damien Sawyer
  • 5,323
  • 3
  • 44
  • 56
2
votes
1 answer

AWS Lambda cold start issue with spring boot

I am new to aws lambda and I am moving my spring boot 2.x based project to lambda.But I am struggling with lambda cold-start and warm-up. I tried a few things mentioned in this…
nikhil
  • 65
  • 2
  • 9
2
votes
0 answers

Do C++ std::threads have a warm-up period?

A little bit of background - I'm running the following setup: i5 8300H (4 core, 8 threads) 32 GB RAM Ubuntu 19.10 GCC 9.2.1, C++17 standard I have a thread manager - essentially an object that you can relay some data to, you give it a callable…
Ljac
  • 31
  • 4
2
votes
1 answer

How to configure warm-up of web-service application within Microsoft Azure

On IIS I can configure my web-service with Application Initialization, AlwaysRunning and Preload enabled to make sure the first request is fast enough. Now I am trying to create a similar web-service within Microsoft Azure. However, the first…
Jordy
  • 23
  • 5
2
votes
2 answers

Entity Framework 6.2 database first warm up

I have an EF 6.2 project in my MVC solution. This uses a SQL server db and has about 40 tables with many foreign keys. The first query is very slow, 20 secs. I immediately hit the same page again, changing the user param, and the query takes less…
Alex Stephens
  • 3,017
  • 1
  • 36
  • 41
2
votes
2 answers

Keeping ASP.NET4.0 page warm on shared hosting

I have a (yet) rarely visited page deployed on a shared hosting environment. Currently, I get very low number of visitors, like 1 visitor/day. It looks like that IIS 7.0 "drops" my site after being idle too long. The first pageload after this takes…
user256890
  • 3,396
  • 5
  • 28
  • 45
2
votes
2 answers

Azure warm up on web api is not working

I have a website with some webservices written with web api 2 and .net 4.6. I want the application to be initialized when I restart the site or when I spin up a new instance (on Azure app service). I have this code in webconfig:
Ashkan S
  • 10,464
  • 6
  • 51
  • 80
2
votes
1 answer

Jenkins - How To Keep Matlab Warmed Up

I'm running Jenkins on a project written in Matlab. My build script is starting up Matlab with necessary arguments to run build script and exits. As Matlab is an interpreted language, consecutive runs are dramatically faster so I'm trying to find a…
Ferit
  • 8,692
  • 8
  • 34
  • 59
2
votes
1 answer

Warming up Chronicle

I am using the Indexed Chronicle queue (version 3.4.3) in a latency sensitive application. To smooth out the latency spikes, I have a blocking queue, in front of the chronicle, where producers drop the messages. A background thread then polls the…
CaptainHastings
  • 1,557
  • 1
  • 15
  • 32
2
votes
1 answer

IIS 7.5 warm up not working with Classic mode

IIS 7.5 warm up (IProcessHostPreloadClient) is not working when application pool's Managed Pipeline Mode set to Classic, if the Managed Pipeline Mode set to integrated Mode it works fine. Not sure if i have to do anything special for classic mode to…
2
votes
0 answers

WCF Service Warm Start with IISExpress

I'm building a WCF service that on startup (not first invocation) needs to monitor the filesystem for files to be updated. I have the service working however, I'm running into a problem where I can't get the WCF service to "warm up" on deployment…
typhoid
  • 315
  • 5
  • 13
2
votes
0 answers

IProcessHostPreloadClient.Preload feature with application pool in classic mode

I am trying to add this feature to my project. It is work for my test web application on application pool in integrated mode. But when I am trying to change application pool mode from Integrated to Classic, it seems Preload method not called after…
Maksym
  • 21
  • 1