I have a WCF Service with out of the box HTTP binding. It accepts a data object on which it runs some calculations and then returns the object.
A single call takes around 1.5s and works without issues. However concurrent calls can cause huge spikes in the completion time (10 concurrent calls can take up to 60s). Even if I run multiple calls one after the other I see spikes where the time taken jumps from 1.5 to over 5 seconds.
I currently have the service configured to single context mode and multiple concurrency mode. But I have tried other combinations to no avail.
Would anyone be able to provide a possible reason for these seemingly random spikes?
Thanks
It accepts a data object on which it runs some calculations and then returns the object.What calculations? Are you using any external resources such as a file stream? How big is this data? – ryadavilli Jan 23 at 18:05Asyncconcept. Which will allow the client / server to be handled on multiple threads. – Greg Jan 23 at 18:09