I know your question is about GC, but I'd like to start with talking about the async implementation first and then see if you're still going to be suffering the same issues.
Going off of your initial implementation's sample code, you're going to be wasting three CPU threads waiting for I/O right now:
- The first thread being wasted is the original WCF I/O thread that is executing the call. It's going to be blocked by the Task.WaitAll while the child Tasks are still outstanding.
- The other two threads that are being wasted are the thread pool threads you're using to execute the calls to Service1 and Service2
All that time while the I/O to Service1 and Service2 is outstanding the three CPU threads you're wasting are not able to be used to execute other work and the GC has to tip toe around them.
Therefore my initial recommendation would be to change your WCF method itself to use the Asynchronous Programming Model (APM) pattern that is supported by the WCF runtime. This solves the problem of the first wasted thread by allowing the original WCF I/O thread that calls into your service implementation to be returned to its pool immediately to be able to service other incoming requests. Once you've done that, you next want to make the calls to Service1 and Service2 asynchronous as well from the client perspectice. That would involve one of two things:
- Generating async versions of their contract interfaces that, again, use the APM BeginXXX/EndXXX that WCF supports in the client model as well.
- If these are simple REST services you're talking to, you have the following other async choices:
WebClient::DownloadStringAsync implementation (WebClient is not my fav API personally)
HttpWebRequest::BeginGetResponse + HttpWebResponse::BeginGetResponseStream + HttpWebRequest::BeginRead
- Go bleeding edge with the new Web API's
HttpClient
Putting all that together, there would be no wasted threads while you're waiting for a response from Service1 and Service2 in your service. The code would look something like this assuming you took a WCF client route:
// Represents a common contract that you talk to your remote instances through
[ServiceContract]
public interface IRemoteService
{
[OperationContract(AsyncPattern=true)]
public IAsyncResult BeginRunQuery(string query, AsyncCallback asyncCallback, object asyncState);
public string EndRunQuery(IAsyncResult asyncResult);
}
// Represents your service's contract to others
[ServiceContract]
public interface IMyService
{
[OperationContract(AsyncPattern=true)]
public IAsyncResult BeginMyMethod(string someParam, AsyncCallback asyncCallback, object asyncState);
public string EndMyMethod(IAsyncResult asyncResult);
}
// This would be your service implementation
public MyService : IMyService
{
public IAsyncResult BeginMyMethod(string someParam, AsyncCallback asyncCallback, object asyncState)
{
// ... get your service instances from somewhere ...
IRemoteService service1 = ...;
IRemoteService service2 = ...;
// ... build up your query ...
string query = ...;
Task<string> service1RunQueryTask = Task<string>.Factory.FromAsync(
service1.BeginRunQuery,
service1.EndRunQuery,
query,
null);
// NOTE: obviously if you are really doing exactly this kind of thing I would refactor this code to not be redundant
Task<string> service2RunQueryTask = Task<string>.Factory.FromAsync(
service2.BeginRunQuery,
service2.EndRunQuery,
query,
null);
// Need to use a TCS here to retain the async state when working with the APM pattern
// and using a continuation based workflow in TPL as ContinueWith
// doesn't allow propagation of async state
TaskCompletionSource<object> taskCompletionSource = new TaskCompletionSource<object>(asyncState);
// Now we need to wait for both calls to complete before we process the results
Task aggregateResultsTask = Task.ContinueWhenAll(
new [] { service1RunQueryTask, service2RunQueryTask })
runQueryAntecedents =>
{
// ... handle exceptions, combine results, yadda yadda ...
try
{
string finalResult = ...;
// Propagate the result to the TCS
taskCompletionSoruce.SetResult(finalResult);
}
catch(Exception exception)
{
// Propagate the exception to the TCS
// NOTE: there are many ways to handle exceptions in antecedent tasks that may be better than this, just keeping it simple for sample purposes
taskCompletionSource.SetException(exception);
}
});
// Need to play nice with the APM pattern of WCF and tell it when we're done
if(asyncCallback != null)
{
taskCompletionSource.Task.ContinueWith(t => asyncCallback(t));
}
// Return the task continuation source task to WCF runtime as the IAsyncResult it will work with and ultimately pass back to use in our EndMyMethod
return taskCompletionSource.Task;
}
public string EndMyMethod(IAsyncResult asyncResult)
{
// Cast back to our Task<string> and propagate the result or any exceptions that might have occurred
return ((Task<string>)asyncResult).Result;
}
}
Once you've got that all in place, you will technically have NO CPU threads executing while the I/O with Service1 and Service2 is outstanding. In doing this, there are no threads for the GC to even have to worry about interrupting most of the time. The only time there will be actual CPU work happening now is the original scheduling of the work and then continuation on the ContinueWhenAll where you handle any exceptions and massage the results.
GC.Collectafter the call, but if you have many requests, that will be counter-intuitive. Have you tried tuning the GC settings ieGCLatencyMode.LowLatency? Also, is this .NET 2 or 4? If .NET 2, you might need to turn on concurrent GC in the config file. Or turning it off might provide better latency. – leppie Jul 17 '12 at 8:28ThreadPooltakes some time to schedule yourTasks, because it's already executing otherTasks on all of the CPUs. Another possibility is that it's caused byDefaultConnectionLimit. – svick Jul 17 '12 at 8:41Taskis another thing that points toThreadPool. – svick Jul 19 '12 at 15:23