我們有一個.NET 3.5 WCF服務,託管在IIS 6.0上,它具有basicHttp綁定。這由2個.NET和2個ASP應用程序使用。當第四個應用程序(不論是.NET還是ASP)啓動並嘗試使用它時,w3wp.exe將在99%處達到峯值,並在幾秒鐘後停留在那裏。當WCF服務被調用時,IIS工作進程(w3wp.exe)發射到99%的CPU
基於此article,我們嘗試將以下內容添加到.NET 2.0 machine.config中,但這沒有任何影響。
<processModel autoConfig="false" maxWorkerThreads="500" maxIoThreads="500" minWorkerThreads="2"/>
<httpRuntime minFreeThreads="250" minLocalRequestFreeThreads="250"/>
任何想法?
編輯:增加了碰撞分析報告信息:
警告1:w3wp.exe_ V2.0應用 _PID_ _Date__12_08_2011__Time_12_13_39PM_ _Manual Dump.dmp以下線程等待同步WCF請求執行 4.35%的線程被阻止
請點擊實際線程來查看WCF線程的描述或檢查WCF請求報告以找出線程的實際線程ID等待。有關此WCF行爲的更多詳細信息,請查看有關WCF請求限制和服務器可伸縮性的博客。
Thread 16 - System ID 3920
Entry point mscorwks!ThreadpoolMgr::intermediateThreadProc
Create time 12/8/2011 12:10:44 PM
Time spent in user mode 0 Days 00:00:00.031
Time spent in kernel mode 0 Days 00:00:00.140
This thread is waiting on a synchronous WCF request to execute
The destination WCF Thread for this ASP.NET worker thread is 14
.NET Call Stack
Function
System.Threading.WaitHandle.WaitOneNative(Microsoft.Win32.SafeHandles.SafeWaitHandle, UInt32, Boolean, Boolean)
System.Threading.WaitHandle.WaitOne(Int64, Boolean)
System.Threading.WaitHandle.WaitOne(Int32, Boolean)
System.Threading.WaitHandle.WaitOne()
System.ServiceModel.Activation.HostedHttpRequestAsyncResult.ExecuteSynchronous(System.Web.HttpApplication, Boolean)
System.ServiceModel.Activation.HttpModule.ProcessRequest(System.Object, System.EventArgs)
System.Web.HttpApplication+SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
System.Web.HttpApplication.ExecuteStep(IExecutionStep, Boolean ByRef)
System.Web.HttpApplication+ApplicationStepManager.ResumeSteps(System.Exception)
System.Web.HttpApplication.System.Web.IHttpAsyncHandler.BeginProcessRequest(System.Web.HttpContext, System.AsyncCallback, System.Object)
System.Web.HttpRuntime.ProcessRequestInternal(System.Web.HttpWorkerRequest)
System.Web.HttpRuntime.ProcessRequestNoDemand(System.Web.HttpWorkerRequest)
System.Web.Hosting.ISAPIRuntime.ProcessRequest(IntPtr, Int32)
要嘗試從您的WCF服務所做的工作中分離出IIS處理,請創建一個Windows服務託管版本的服務,並查看它是否在類似負載下顯示相同的行爲。如果確實如此,則服務中的負載會觸發CPU密集型工作。如果沒有,那麼你知道你有一個IIS優化問題,可以通過移動到IIS 7來解決:) –
@SixtoSaez:這似乎是一個好主意,但將其轉換爲Windows服務(或遷移到IIS 7)將是不切實際的在這個階段考慮它的大小。我希望這可能是關於ASP.NET工作線程與WCF IO線程交談方式的線程管理問題。 – Kash