vote up 0 vote down star

I have an old asp.net application, we send out httpWebRequest to remote REST server and retrieve xml back, most of the time the application works fine. recently, we got some high CPU usage issue several times a day.

During the high CPU usage time, we monitored those httpWebRequest connections (by checking netstat for w3wp process), at the very beginning, the connections change to "CLOSE_WAIT" status from "ESTABLISHED", then after those connections timeout, those connections disappeared one by one, then there is no connection any more. After reset the IIS, when the w3wp.exe process start again, we still could not find any connections to httpWebRequest target server. so the CPU usage keep staying at high level. even after several round of reset, it won't solve the issue, until we saw some connections start to connect to httpWebRequest target server, CPU went down.

I actually thought it could be the issue of my code did not handle the httpWebRequest properly, I posted another question here: Question

As mentioned in that question, I also found lots timeout exception for System.Net.HttpWebRequest.GetResponse(). We found 3500 same exception with in 5 minutes when CPU usage is really high.

Does anyone have experience on this type of issue? Why the application won't send out request any more (since there is no connection in netstat). Thanks.

Here is the source code just in case you need reference.

System.Net.HttpWebResponse httpWebResponse = null;
System.IO.Stream stream  = null;
XmlTextReader xmlTextReader  = null;
try
{
	System.Net.HttpWebRequest httpWebRequest = (System.Net.HttpWebRequest)System.Net.WebRequest.Create(request);
	httpWebRequest.ReadWriteTimeout = 10000;
	httpWebRequest.Timeout = 10000;
	httpWebRequest.KeepAlive = false;
	httpWebRequest.Method = "GET";
	httpWebResponse = (System.Net.HttpWebResponse)httpWebRequest.GetResponse();
	stream = httpWebResponse.GetResponseStream();
	xmlTextReader = new  XmlTextReader(stream);
	xmlTextReader.Read();
	xmlDocument.Load(xmlTextReader);
	//Document processing code.
	//...
}
catch
{
	//Catch blcok with error handle
}
finally
{
	if (xmlTextReader != null)
		xmlTextReader.Close();
	if (httpWebResponse != null)
		httpWebResponse.Close();
	if (stream != null)
		stream.Close();
}
flag

80% accept rate

2 Answers

vote up 1 vote down check

From your description, it is not clear to me that your high CPU utilization is related to your outgoing HTTP requests. High CPU utilization could be due to a bug in your code, a bug in CLR, IIS, or something else. Without knowing which component is consuming the CPU, you wont be able to do anything further.

If I were you, I would first try to attach a sampling profiler to the W3WP process, and see which component is consuming the CPU. That should point you to the next steps in resolving this issue.

link|flag
@feroze, thanks a lot for the help, I don't have any experience on sampling profiler, could you please give me some more detail or some links I can learn it. Thanks again. – machinegone Sep 12 at 21:01
You can download CLR profiler from here: microsoft.com/downloads/… Here are some links that show how to use the profiler: msdn.microsoft.com/en-us/library/… msdn.microsoft.com/en-us/magazine/… I was just looking at your code again, and something came to my attention. Since you are attaching an XMLTextReader() to the stream, it is also possible that parsing the XML document might be consuming the CPU if the document is very complex. – feroze Sep 13 at 20:19
@feroze, thanks again, I will read guide and run it on my server. I will give you update later. Thanks. – machinegone Sep 14 at 22:13
vote up 1 vote down

I would suggest you to try sending requests asynchronously to avoid blocking the main thread:

using (var client = new WebClient())
{
    client.OpenReadCompleted += (sender, e) =>
    {
        using (var reader = XmlReader.Create(e.Result))
        {
            // Process the XML document here
        }
    };
    client.OpenReadAsync(new Uri("http://www.example.com"));
}
link|flag
Darin, thanks, I will try this way to see if it can help me to solve the issue. – machinegone Sep 5 at 7:39

Your Answer

Get an OpenID
or

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