Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cold startup optimization

I tried to search, but so far with no luck. Does anyone know a good resource how one should do cold start optimizations?

The app in question is C++/MFC app, compiled with VS2010, full version, with built in profiler available. I have tried to cut down all the extra weight to get the load times acceptable for warm start, but the cold start is simply unacceptable. Sometimes close to 30 secs, and there is nothing that's slow code wise. Cpu loads hit 80% during warm starts, and stay below 20% during cold starts.

I tried to play with delay-load linker settings today, but I don't quite understand how they affect the performance. Also, I tried the executable packer, but the test on VM didn't seemed to be way faster. Is there anything else I could try?

like image 483
Coder Avatar asked Sep 27 '10 20:09

Coder


People also ask

What is cold start programming?

Cold start in computing refers to a problem where a system or its part was created or restarted and is not working at its normal operation. The problem can be related to initialising internal objects or populating cache or starting up subsystems.

What is cold start in API?

Cold starts happen when you first invoke a function, or when a function is invoked after being inactive for an extended period. They also happen when Lambda scales up a function, since each new instance of the function is a new execution environment.

What is a cold start AWS?

Once complete, Lambda runs any initialization code outside of the event handler before finally running the handler code. In this diagram, the first two steps of setting up the environment and the code are frequently referred to as a “cold start”.


3 Answers

Long cold start times are pure hard disk problems. Finding the DLLs that your program needs. You cannot optimize the hard disk beyond running a defragging tool. Segmenting your program so that DLL loading overlaps UI time is quite difficult. Using COM servers or the linker's /DELAYLOAD option are obvious approaches but it is just not that easy to get a functional UI up on the screen without touching just about anything. Separating classes into DLLs that are triggered by toolbar or menu options is of course possible but MFC doesn't make it that easy with Idle time UI updating (sorry, forgot the exact phrase).

You're not alone, good examples of programs that have this problem too are Microsoft Office and Acrobat Reader. They solve the problem with a very icky hack, they install an 'optimizer' in Run registry key or Startup folder shortcut. Which doesn't do anything but touch all the DLLs so that they are loaded in the file system cache. Giving the EXE a warm start after the user checked her email. I hate them and keep deleting them after they put it back again. But it does improve the user opinion, they'll think it is the email reader that is slow. Or the blasted Windows-shoulda-gotten-a-Mac of course.

That said, 30 seconds is a helluva long time. Do make sure this isn't a problem on just your dev machine, induced by building the binaries over and over again and getting them scattered all over the disk. Run Defraggler. Next, check what all it is doing with the SysInternals' ProcMon utility.

like image 64
Hans Passant Avatar answered Oct 13 '22 20:10

Hans Passant


One thing that might help is to have a look into profile guided optimisation, which reorders the executable so that things load in the most efficient order.

But really you should try and work out where the time's going - sounds like it might be doing a lot of disk access - are you loading a lot of big data (images, etc?). It seems unlikely that it would be purely code loading which is taking so much time.

Have you tried a tool like Procmon (www.sysinternals.com) to see which files are being touched?

like image 34
Will Dean Avatar answered Oct 13 '22 21:10

Will Dean


"I tried to play with delay-load linker settings today, but I don't quite understand how they affect the performance."

When you link to a DLL dependency it loads it up front - when the executable is first loaded. Delay loading is like it suggests, delaying the load until it's actually needed - when a type or method in the DLL is first used by the executable, i.e. you can think of it as lazy initialization at the module level.

The linker is effectively using a stub to LoadLibrary and GetProcAddress. Once the DLL is loaded the stub is overwritten so that calls are made directly to the DLL from then on.

To take advantage of this you need to look at the code paths - which variables or method calls are used conditionally or not on the main screen, in which case they don't need to be loaded up front.

like image 41
Sean Fausett Avatar answered Oct 13 '22 22:10

Sean Fausett