Sometimes my build fail with this error.

 0>MSBUILD : error MSB4166: Child node "3" exited prematurely. Shutting down.

It seems to be completely random and I've not been able to reproduce it at will. I'm running VS2010 Win7 x64 MSBuild 4.0 but this problem seems to be platform and OS independent. I'm building solutions in parallel (/m switch + BuildInParallel=True) and I don't want to disable this feature because I'm compiling application containing 800+ projects . Any idea how to solve it?

EDIT: When I installed .NET 4.5 developer preview, error logging was improved in the MSBuild 4.5 and now the error string looks like this:

error MSB4166: Child node "3" exited prematurely. Shutting down. Diagnostic information may be found in files in the temporary files directory named MSBuild_*.failure.txt

I can find error log file in the Temp folder. This is content of MSBuild_*.failure.txt file:

System.InvalidOperationException: BuildEventArgs has formatted message while serializing!
   at Microsoft.Build.Framework.LazyFormattedBuildEventArgs.WriteToStream(BinaryWriter writer)
   at Microsoft.Build.Framework.BuildMessageEventArgs.WriteToStream(BinaryWriter writer)
   at Microsoft.Build.Shared.LogMessagePacketBase.WriteToStream(INodePacketTranslator translator)
   at Microsoft.Build.BackEnd.NodeEndpointOutOfProcBase.PacketPumpProc()
link|improve this question

67% accept rate
I'm having the same troubles. I have also seen out-of-memory exceptions related to this error. Restricting it to one simultaneous build doesn't help; it still errors out: See the screenshot here; the error occurs precisely when the memory consumption exceeds the physical available memory. It had a few close brushes with death and then it hit the maximum and died, taking down Outlook and Process Explorer with it, offering up a JIT debugger that won't start, and releasing MSBuild.exe to become a zombie process sitting on memory until I manually kill it. – Kevin Vermeer Nov 1 '11 at 21:54
Strange thing is that I'm using 64bit MSBuild on 64bit Win7 laptop with 4GB of physical and "unlimited" virtual RAM. MSBuild process is using about 1GB of RAM (1,5GB peak). – Ludwo Nov 2 '11 at 9:43
I'm using 32bit MSBuild on a 32-bit WinXP desktop with 2GB of physical and similarly unlimited virtual RAM. The weird thing is that the crash occurs when physical RAM is completely used up. It's like I've got zero virtual memory! – Kevin Vermeer Nov 2 '11 at 11:30
Yes, it seems like MSBuild is not using virtual memory :) – Ludwo Nov 2 '11 at 11:39
But it is not true. I checked it and it failed on this issue if it have 800MB of free physical memory available. – Ludwo Nov 3 '11 at 20:01
feedback

3 Answers

You could be running out of memory, causing one of the build sub processes to fail - does it fail less if you use /m:2 to restrict it to two concurrent builds? (assuming you have more than 2 cores)

Or, if you can borrow some RAM from another machine, or increase your swap size, does it happen less often when you have more memory installed on your build machine?

link|improve this answer
I have only 2 cores. My build sometimes fail on out of memory exception. I will do some investigation and I will let you know... – Ludwo Nov 1 '11 at 9:01
I have a lot of free memory and my failed again. It should be somehow related to 32bit process memory limitation because my build is using more than 2GB of RAM. But I don't see how it should be possible because my MSBuild process is 64bit. – Ludwo Nov 3 '11 at 20:08
feedback

As discussed in the exchange of comments to the question:

Strange thing is that I'm using 64bit MSBuild on 64bit Win7 laptop with 4GB of physical and "unlimited" virtual RAM. MSBuild process is using about 1GB of RAM (1,5GB peak). – Ludwo 4 hours ago

I'm using 32bit MSBuild on a 32-bit WinXP desktop with 2GB of physical and similarly unlimited virtual RAM. The weird thing is that the crash occurs when physical RAM is completely used up. It's like I've got zero virtual memory! – Kevin Vermeer 3 hours ago

Yes, it seems like MSBuild is not using virtual memory :) – Ludwo 2 hours ago

It did seem like MSbuild wasn't using virtual memory. I did some tests (starting a bunch of programs) and it seemed like nothing was using virtual memory. I did some searches which lead me to check

Control Panel -> System -> Advanced -> Performance -> Advanced -> Virtual Memory

and found that there exists a setting which limited my virtual memory size system-wide. I had imagined that virtual memory to be effectively infinite, or, more precisely, 4 GB for each process on 32-bit XP. I wasn't approaching this limit. However, my virtual memory space was limited to...0MB. Not cool, whoever or whatever did that.

I changed this to allocate a minimum of 1024 MB and a maximum of 4096 MB of virtual memory. I added the "Virtual size" column in Process Explorer, which, together with the "System Commit" graph, demonstrates that I now use more memory than the amount available in the physical RAM sticks.

This fixed my problems. Unfortunately, my system grinds to a near-halt whenever it tries to page any memory, but that's better than a crash. I did re-enable parallel builds; it parallelizes and uses lots of CPU while I have RAM left (which is true for most of the files) and dips to 1% of CPU usage when I have no more RAM. When those files are done, speed is restored.

link|improve this answer
My VM is enabled and system managed – Ludwo Nov 2 '11 at 15:29
@Ludwo - That's a good thing, and there are certainly many possible causes for this sort of error, but have you tried setting it manually? – Kevin Vermeer Nov 2 '11 at 15:49
It is not VM settings issue. I have 800MB of free memory. Now I will check if is it caused by 32bit extensions or not... – Ludwo Nov 3 '11 at 20:03
feedback

Perhaps it's the build-equivalent of a race condition?

http://blogs.msdn.com/b/msbuild/archive/2007/04/26/building-projects-in-parallel.aspx

If you are using an ordinary Reference tag for a dependency on the output of another project that is part of the build (rather than a ProjectReference tag) you could be getting a situation where usually project X completes before project Y (which depends on project X's output) but occasionally they build concurrently, in which case the output of X would not exist when Y went to look for it, causing Y to fail. I can't find anything about what sort of error output MSBuild gives in that situation though (and don't have a readily available way to test it just now), so that may not be it.

Still the inconsistency in the outcomes (often successful, occasionally fails) leads me to suspect that something like that may well be the cause.

link|improve this answer
No. I have huge number of projects in multiple solutions. I use my merge task for merging solutions and I create one big solution before every build to be able to build all projects in parallel. In merge solutions task I'm converting all references into project references if possible. So my project files are updated after solutions merge as described in example2 in your linked article. – Ludwo Nov 5 '11 at 8:01
+1 for your answer because you indirectly explained me why only one instance of MSBuild is active while other instances are idle. In the discussion I found link to this bug. It is fixed in future MSBuild release after v4.0. I have to split my projects into smaller parts to improve msbuild performance :( – Ludwo Nov 5 '11 at 8:06
@Ludwo - If it helps, I had 8 projects in my solution when I found and fixed this problem. They were split into some 800 files and 16,000 lines of code; about 40% of this was contained in one project. – Kevin Vermeer Nov 8 '11 at 18:07
Thanks! So this is normal when this big project was compiled first and all other dependent projects were waiting for it. – Ludwo Nov 8 '11 at 20:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.