Iis – High CPU usage of IIS process (w3wp.exe) because of many slow clr.dll!CopyPDBs

asp.netiisiis-7.5netwindows-server-2008-r2

I am using Windows Server 2008 R2 Enterprise with IIS 7.5, hosting ASP.NET MVC 5 applications.

I've noticed lately that one of the w3wp.exe processes is using extremely high CPU bandwidth:

High CPU usage of w3wp.exe

After investigated little bit more, I've also noticed that the reason of this is the function clr.dll!CopyPDBs:

w3wp.exe threads details

Does anybody know what can be the problem?

If the reason is not related to .NET Framework and clr.dll!CopyPDBs how can I investigate further to find the actual reason for this

Best Answer

This is usually because you have a custom application on top of IIS. If it is an in house built application, speak with the Developers about it.

If it is not developed in house, please have a look at .net CLR with counters https://msdn.microsoft.com/en-us/library/x2tyfybc(v=vs.110).aspx and more tips on CLR performance https://msdn.microsoft.com/en-us/library/ee851764(v=vs.110).aspx and https://msdn.microsoft.com/en-us/magazine/cc163528.aspx .

Related Topic