Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a C# library that does some file processing. I created a console and desktop application that uses the library and processes a 256mb file in about 1min. I then created a WCF service hosted in a windows service which uses the same file processing library yet takes 10x longer to process the same 256mb file when called from a website. The windows service is running under a domain account with administrator privileges.

The overhead in calling the WCF service is very fast yet the LoadFile method takes much much longer. I tried increasing the process priority during startup via

Process.GetCurrentProcess ().PriorityClass = ProcessPriorityClass.High;

to no avail. I've run this service on a Win7 64bit desktop system (6gb), 2003 XP 32bit server (4gb) and 2008 R2 32bit server (4bg) all with similar results. The console and desktop apps each process the file in about 1min on the above system. The process does not appear to be memory constrained and entering swapville.

Are windows services somehow process constrained? Would I get better results running the WCF service under IIS?

EDIT: I tried calling the library directory from the website and that too takes 10x longer than the console or desktop application.

UPDATE: Turns out it was Log4PostSharp. The console and desktop apps didn't have any traces of log4net in the configuration files yet the website and windows service did. There was a log4net TraceAppender silently eating up precious CPU cycles.

share|improve this question
2  
How are you loading the file exactly? Did you try with a profiler to see where exactly the bottleneck is ( VS 2010 Ultimate contains a profiler ) – Davide Piras Mar 7 '11 at 22:22
6  
I would recommend restoring the process priority class to normal if you have not already done so. Modifying the process priority will not typically speed up a program, and it could potentially create other problems. – Jeffrey L Whitledge Mar 7 '11 at 22:23
@Davide: The profiler is also in Premium. +1; this is the way to go. – Craig Stuntz Mar 7 '11 at 22:29
A Procmon trace might be enlightening, too. – Gabe Mar 7 '11 at 22:49
2  
When you run the console app is the file on the same server? And when you run as a service, is the file on a different server? Copying the large file across servers may be the bottle neck. – Steve Wellens Mar 7 '11 at 22:59
show 4 more comments

2 Answers

I cannot think why the behaviour you describe is happening - it does seem very strange. Since you are processing a relatively large file in memory though, the garbage collector may be affecting it. You could try changing the mode the garbage collector runs in to see if it has any effect.

The garbage collector has three modes - workstation, server and concurrent. Each one behaves in a different way and is optimised for different types of applications. Workstation mode is the default mode, and is what all processes run using unless configured to use something else. More info about the modes can be found here.

Try explicitly setting the garbage collector to use server mode (it will only have an effect on a multi-processor machine though). To do this, put the following in your app.config file:

<configuration>
    <runtime>
        <gcServer enabled="true" />
    </runtime>
</configuration>
share|improve this answer
so far no luck with this change – Todd Smith Mar 8 '11 at 0:28
1  
I won't downvote you but a 10X slowdown due to the GC seems far-fetched. There are other areas to investigate first especially given the very small amount of info we have from the OP. – Johann Blais Mar 8 '11 at 6:31
@Johann: I've experienced large slow downs before due to the garbage collector while it is garbage collecting - take a look at the %time in GC performance counter on a running application that is doing hard work. – adrianbanks Mar 8 '11 at 9:51

Thanks for the advice on gcserver. The gcserver config changed managed to double the throughput of our windows service app without any side effects.

share|improve this answer
You've posted this as an answer. – Robert Apr 19 at 14:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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