I'm porting a cpu-heavy .net 4.0 windows application to a .net 4.0 wcf service. Basically I just imported the .net classes to the wcf service.

All is working well except for performance at the wcf service - a task that takes 6267947 ticks (2539ms) uses 815349861 ticks (13045ms) on the aspx.net wcf service running locally on the same develop machine.

I allready have uploaded the service + a test client to appharbor where the performance is as bad as on my local machine - the link to my test app is: http://xylophoneclient.apphb.com/. Any ideas on how I can improve performance?

link|improve this question

What type of work does your service have to do? – Johnny Graber Feb 19 at 11:08
@Johnny Graber its a scrabble solver. it loads a large dictionary into a trie structure in memory where a lot of lookup is going on – Muleskinner Feb 19 at 11:11
2  
The actual doing code should take the same time. The switch to WCF should only impact transport issues, assuming you aren't using sync-context etc. Can you clarify: where is that time measured? "doing" code? Or transport? Or...? – Marc Gravell Feb 19 at 11:12
@Marc Gravell The transport is minimal but anyway - the benchmark is measured on the same spot in both situations, ie. "doing code". Could it be that the service does not have allocated enough memory to hold the dictionary trie – Muleskinner Feb 19 at 11:17
1  
@friism tak! caching the dictionary trie on application_start for some reason has improved performance, now the wcf service runs just as fast as the windows app locally - the online apphb version is around three times slower. I guess this has to do with assigned cpu resources – Muleskinner Feb 20 at 22:47
show 5 more comments
feedback

5 Answers

up vote 2 down vote accepted

If you need to do time-consuming initialization of a complex datastructure, you should to that once in Application_Start() and assign the generated datastructure to a static variable on the MvcApplication object. Doing it just once on application start is going to be much faster that doing it in each request.

link|improve this answer
Thanks, would you say that the performance discrepancy in running the wcf service locally vs running it online at appharbor (3 times slower in calculating, not taking network traffic in consideration) can be explained by lack of sufficient CPU resources on appharbor. If so, could the performance be optimized by purchasing extra workers? – Muleskinner Feb 21 at 8:19
Purchasing additional workers will not increase individual request response time, but will increase total request throughput because you get additional concurrency. We are considering whether adding higher-powered individual workers is something we should do. You might want to consider whether doing resource-intensive processing like this in synchronous requests is appropriate and whether maybe moving this to asynchronous AJAX request might be better. – friism Feb 21 at 19:41
Thanks a lot for your answer – Muleskinner Feb 21 at 21:23
feedback

Check any dependencies on your service that may be constructed at Request Time. These Include constructor dependencies and field/property dependencies. Maybe one of them is causing the delay? If this is the case consider using a singleton to instantiate the long running class.

Have you confirmed that subsequent requests still cause the delay?

Also create a band new service that does something simple like Datetime.Now.toString() and see if it has the same problem.

link|improve this answer
feedback

Please take a look at the articles and whitepapers below. I think they should give you enough concrete performance considerations to explore, and likely some very practical settings to tweak, optimize, or change.

Performance Tuning WCF Services

Optimizing WCF Web Service Performance

Using ServiceThrottlingBehavior to Control WCF Service Performance

Transport Quotas

Optimizing IIS Performance

ASP.NET Performance Overview

A Performance Comparison of Windows Communication Foundation (WCF) with Existing Distributed Communication Technologies

link|improve this answer
feedback

I would take a full memory dump during the 13 seconds (or several using procdump) and then acutally look at what is occurring in the process (windbg and sos.dll). Then, you can narrow down which code is the culprit.

link|improve this answer
feedback

I take it that the dictionary tree is only loaded once, into cache? You're not loading it on every call are you?

link|improve this answer
its loaded every call at the moment (this is first prototype), but that is not the problem. Trie load time takes 417ms. – Muleskinner Feb 19 at 12:01
feedback

Your Answer

 
or
required, but never shown

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